If you extend the user class with an inherited TUser and set the user class
SphinxConfig1.UserClass := TsmxUser;
Will the standard methods such as
Context.UserManager.FindByName('AUSERNAME');
return the extended class (although you would have to cast it I assume)?
User := TsmxUser(Context.UserManager.FindByName('AUSERNAME'));
and could Context.UserManager.CreateUserInstance
be used in the same way?
Thanks