AccidentalFish.ApplicationSupport.Powershell.SecretStore.KeyVaultSecretStore.Save C# (CSharp) Method

Save() public method

public Save ( string key, string value ) : System.Threading.Tasks.Task
key string
value string
return System.Threading.Tasks.Task
        public async Task Save(string key, string value)
        {
            string encodedKey = EncodeKey(key);
            await _keyVaultClient.SetSecretAsync(_vaultName, encodedKey, value);
        }