public KeyVaultTlsPskIdentityManager(string authority, string clientId, string clientSecret)
 {
     storage = KeyVaultPskStorage.CreateSingleton(authority, clientId, clientSecret);
 }
Esempio n. 2
0
 public static KeyVaultPskStorage Create(string authority, string clientId, string clientSecret)
 {
     return(KeyVaultPskStorage.CreateSingleton(authority, clientId, clientSecret));
 }