| 
        public interface IIdentity
       | 
| AuthenticationType | Read-only Gets the type of authentication used. | 
| IsAuthenticated | Read-only Gets a value that indicates whether the user has been authenticated. | 
| Name | Read-only Gets the name of the current user. | 
| 
            string AuthenticationType {get;}
           | 
| 
            bool IsAuthenticated {get;}
           | 
| 
            string Name {get;}
           | 
IIdentity.Name is typically set to the empty string ("") for an unauthenticated entity, but can take other values.