Example #1
0
 public UserInfo GetUser(string LoggedOnUserName, string LoggedOnPassword)
 {
     return(AuthenticationProvider.Instance(mProviderTypeName).GetUser(LoggedOnUserName, LoggedOnPassword));
 }
Example #2
0
 public bool IsAuthenticationMember(GroupInfo AuthenticationGroup, UserInfo AuthenticationUser)
 {
     return(AuthenticationProvider.Instance(this.mProviderTypeName).IsAuthenticationMember(AuthenticationGroup, AuthenticationUser));
 }
Example #3
0
 public string NetworkStatus()
 {
     return(AuthenticationProvider.Instance(mProviderTypeName).GetNetworkStatus());
 }
Example #4
0
 public ArrayList GetGroups()
 {
     return(AuthenticationProvider.Instance(this.mProviderTypeName).GetGroups());
 }
Example #5
0
 public Array AuthenticationTypes()
 {
     return(AuthenticationProvider.Instance(mProviderTypeName).GetAuthenticationTypes());
 }