AccidentalFish.ApplicationSupport.Azure.KeyVault.Implementation.KeyVaultFactory.Create C# (CSharp) Method

Create() public method

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