AuthenticationService.IsLoggedIn Method

Definition

Determines whether the current user is authenticated.

public:
 bool IsLoggedIn();
[System.ServiceModel.OperationContract]
public bool IsLoggedIn ();
[<System.ServiceModel.OperationContract>]
member this.IsLoggedIn : unit -> bool
Public Function IsLoggedIn () As Boolean

Returns

true if the user has been authenticated; otherwise, false.

Attributes

Remarks

The IsLoggedIn method checks whether the current user is authenticated by checking the IsAuthenticated.property.

Note

Do not call the IsLoggedIn method from code that is executing on the Web server. You call the IsLoggedIn method only as part of a WCF service.

Applies to

See also