Exemple #1
0
 public static AuthServer GetFacebookAuthServer()
 {
     AuthServer[] authServerByType = OAuthConfigHelper.GetAuthServerByType(AuthServerType.Facebook);
     if (authServerByType.Length == 0)
     {
         throw new AuthServerNotFoundException(DirectoryStrings.ErrorAuthServerTypeNotFound(AuthServerType.Facebook.ToString()));
     }
     return(authServerByType[0]);
 }
Exemple #2
0
 public static AuthServer[] GetAuthServers()
 {
     return(OAuthConfigHelper.GetAuthServerByType(AuthServerType.MicrosoftACS));
 }