Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
This method supports the AD FS infrastructure and is not intended to be used directly from your code.
Namespace: System.Web.Security.SingleSignOn
Assembly: System.Web.Security.SingleSignOn (in System.Web.Security.SingleSignOn.dll)
Syntax
public override MembershipUser GetUser(
string name,
bool userIsOnline
)
public:
virtual MembershipUser^ GetUser(
String^ name,
bool userIsOnline
) override
override GetUser :
name:string *
userIsOnline:bool -> MembershipUser
Public Overrides Function GetUser (
name As String,
userIsOnline As Boolean
) As MembershipUser
Parameters
name
Type: System.StringThe name of the user to get information for.
userIsOnline
Type: System.Booleantrue to update the last-activity date/time stamp for the user; false to return user information without updating the last-activity date/time stamp for the user.
Return Value
Type: System.Web.Security.MembershipUser
The user.
See Also
GetUser Overload
SingleSignOnMembershipProvider Class
System.Web.Security.SingleSignOn Namespace
Return to top