mscorlib(4.0.0.0) API with additions
IIdentity.cs
2 
4 {
6  [ComVisible(true)]
7  [__DynamicallyInvokable]
8  public interface IIdentity
9  {
12  [__DynamicallyInvokable]
13  string Name
14  {
15  [__DynamicallyInvokable]
16  get;
17  }
18 
21  [__DynamicallyInvokable]
22  string AuthenticationType
23  {
24  [__DynamicallyInvokable]
25  get;
26  }
27 
31  [__DynamicallyInvokable]
32  bool IsAuthenticated
33  {
34  [__DynamicallyInvokable]
35  get;
36  }
37  }
38 }
Definition: __Canon.cs:3
bool IsAuthenticated
Gets a value that indicates whether the user has been authenticated.
Definition: IIdentity.cs:33
string AuthenticationType
Gets the type of authentication used.
Definition: IIdentity.cs:23
Defines the basic functionality of an identity object.
Definition: IIdentity.cs:8
string Name
Gets the name of the current user.
Definition: IIdentity.cs:14