KeyVaultSecretManager.GetData(IEnumerable<KeyVaultSecret>) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Converts a loaded list of secrets into a corresponding set of configuration key-value pairs.
public virtual System.Collections.Generic.Dictionary<string,string> GetData (System.Collections.Generic.IEnumerable<Azure.Security.KeyVault.Secrets.KeyVaultSecret> secrets);
abstract member GetData : seq<Azure.Security.KeyVault.Secrets.KeyVaultSecret> -> System.Collections.Generic.Dictionary<string, string>
override this.GetData : seq<Azure.Security.KeyVault.Secrets.KeyVaultSecret> -> System.Collections.Generic.Dictionary<string, string>
Public Overridable Function GetData (secrets As IEnumerable(Of KeyVaultSecret)) As Dictionary(Of String, String)
Parameters
- secrets
- IEnumerable<KeyVaultSecret>
A set of secrets retrieved during Load() call.
Returns
The dictionary of configuration key-value pairs that would be assigned to the Data and exposed from the IConfiguration.
Exceptions
When secrets
is null
.
Applies to
Совместная работа с нами на GitHub
Источник этого содержимого можно найти на GitHub, где также можно создавать и просматривать проблемы и запросы на вытягивание. Дополнительные сведения см. в нашем руководстве для участников.
Azure SDK for .NET