Skip to content

Commit 788e9b3

Browse files
committed
update
1 parent bcb95e1 commit 788e9b3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/key-vault/secrets/quick-create-net.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -167,11 +167,11 @@ In this example, the name of your key vault is expanded to the key vault URI, in
167167

168168
### Save a secret
169169

170-
Now that the console app is authenticated, add a secret to the key vault. For this task, use the [SetSecretAsync](/dotnet/api/azure.security.keyvault.secrets.secretclient.setsecretasync) method.
170+
Now that the console app is authenticated, add a secret to the key vault. For this task, use the [SetSecretAsync](/dotnet/api/azure.security.keyvault.secrets.secretclient.setsecretasync) method.
171171

172-
The method's first parameter accepts a name for the secret. In this sample, the variable "SecretName" stores the string "mySecret".
172+
The method's first parameter accepts a name for the secret. In this sample, the variable `secretName` stores the string "mySecret".
173173

174-
And the method's second parameter accepts a value for the secret. In this sample, the secret is input by the user via the commandline and stored in the variable "secretValue".
174+
The method's second parameter accepts a value for the secret. In this sample, the secret is input by the user via the commandline and stored in the variable `secretValue`.
175175

176176
```csharp
177177
await client.SetSecretAsync(secretName, secretValue);

0 commit comments

Comments
 (0)