Exemple #1
0
 public void UnregisterProvider(ProviderType providerType)
 {
     UnregisterProvider(SocialAuthManager.GetProviderTypeId(providerType));
 }
 public IEnumerable <IAccount> FindAccounts(ProviderType providerType)
 {
     return(FindAccounts(SocialAuthManager.GetProviderTypeId(providerType)));
 }
 public static Task <IOAuth1Account> AuthenticateTwitterAsync(this SocialAuthManager authManager, IOAuth1Options options, string accountId = null)
 {
     return(authManager.AuthenticateAsync <IOAuth1Account, IOAuth1Options>(SocialAuthManager.GetProviderTypeId(ProviderType.Twitter), options, accountId));
 }
 public IAccount FindAnyAccount(ProviderType providerType)
 {
     return(FindAnyAccount(SocialAuthManager.GetProviderTypeId(providerType)));
 }