AccidentalFish.ApplicationSupport.Azure.KeyVault.Implementation.KeyVaultFactory.Create C# (CSharp) 메소드

Create() 공개 메소드

public Create ( string clientId, string clientSecret, string vaultUri, bool checkIfKeyExistsBeforeGet = false ) : IKeyVault
clientId string
clientSecret string
vaultUri string
checkIfKeyExistsBeforeGet bool
리턴 IKeyVault
        public IKeyVault Create(string clientId, string clientSecret, string vaultUri, bool checkIfKeyExistsBeforeGet=false)
        {
            return new KeyVault(clientId, clientSecret, vaultUri, checkIfKeyExistsBeforeGet);
        }
    }
KeyVaultFactory