ConfigurationBinder.GetValue Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
GetValue(IConfiguration, Type, String) |
Extrai o valor com a chave especificada e o converte no tipo especificado. |
GetValue(IConfiguration, Type, String, Object) |
Extrai o valor com a chave especificada e o converte no tipo especificado. |
GetValue<T>(IConfiguration, String) |
Extrai o valor com a chave especificada e converte-o no tipo T. |
GetValue<T>(IConfiguration, String, T) |
Extrai o valor com a chave especificada e converte-o no tipo T. |
GetValue(IConfiguration, Type, String)
- Origem:
- ConfigurationBinder.cs
- Origem:
- ConfigurationBinder.cs
- Origem:
- ConfigurationBinder.cs
Extrai o valor com a chave especificada e o converte no tipo especificado.
public:
[System::Runtime::CompilerServices::Extension]
static System::Object ^ GetValue(Microsoft::Extensions::Configuration::IConfiguration ^ configuration, Type ^ type, System::String ^ key);
public static object GetValue (this Microsoft.Extensions.Configuration.IConfiguration configuration, Type type, string key);
public static object? GetValue (this Microsoft.Extensions.Configuration.IConfiguration configuration, Type type, string key);
static member GetValue : Microsoft.Extensions.Configuration.IConfiguration * Type * string -> obj
<Extension()>
Public Function GetValue (configuration As IConfiguration, type As Type, key As String) As Object
Parâmetros
- configuration
- IConfiguration
A configuração.
- type
- Type
O tipo no qual converter o valor.
- key
- String
A chave do valor da seção de configuração a ser convertido.
Retornos
O valor convertido.
Aplica-se a
GetValue(IConfiguration, Type, String, Object)
- Origem:
- ConfigurationBinder.cs
- Origem:
- ConfigurationBinder.cs
- Origem:
- ConfigurationBinder.cs
Extrai o valor com a chave especificada e o converte no tipo especificado.
public:
[System::Runtime::CompilerServices::Extension]
static System::Object ^ GetValue(Microsoft::Extensions::Configuration::IConfiguration ^ configuration, Type ^ type, System::String ^ key, System::Object ^ defaultValue);
public static object GetValue (this Microsoft.Extensions.Configuration.IConfiguration configuration, Type type, string key, object defaultValue);
public static object? GetValue (this Microsoft.Extensions.Configuration.IConfiguration configuration, Type type, string key, object? defaultValue);
static member GetValue : Microsoft.Extensions.Configuration.IConfiguration * Type * string * obj -> obj
<Extension()>
Public Function GetValue (configuration As IConfiguration, type As Type, key As String, defaultValue As Object) As Object
Parâmetros
- configuration
- IConfiguration
A configuração.
- type
- Type
O tipo no qual converter o valor.
- key
- String
A chave do valor da seção de configuração a ser convertido.
- defaultValue
- Object
O valor padrão a ser usado se nenhum valor for encontrado.
Retornos
O valor convertido.
Aplica-se a
GetValue<T>(IConfiguration, String)
- Origem:
- ConfigurationBinder.cs
- Origem:
- ConfigurationBinder.cs
- Origem:
- ConfigurationBinder.cs
Extrai o valor com a chave especificada e converte-o no tipo T.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static T GetValue(Microsoft::Extensions::Configuration::IConfiguration ^ configuration, System::String ^ key);
public static T GetValue<T> (this Microsoft.Extensions.Configuration.IConfiguration configuration, string key);
public static T? GetValue<T> (this Microsoft.Extensions.Configuration.IConfiguration configuration, string key);
static member GetValue : Microsoft.Extensions.Configuration.IConfiguration * string -> 'T
<Extension()>
Public Function GetValue(Of T) (configuration As IConfiguration, key As String) As T
Parâmetros de tipo
- T
O tipo no qual converter o valor.
Parâmetros
- configuration
- IConfiguration
A configuração.
- key
- String
A chave do valor da seção de configuração a ser convertido.
Retornos
O valor convertido.
Aplica-se a
GetValue<T>(IConfiguration, String, T)
- Origem:
- ConfigurationBinder.cs
- Origem:
- ConfigurationBinder.cs
- Origem:
- ConfigurationBinder.cs
Extrai o valor com a chave especificada e converte-o no tipo T.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static T GetValue(Microsoft::Extensions::Configuration::IConfiguration ^ configuration, System::String ^ key, T defaultValue);
public static T GetValue<T> (this Microsoft.Extensions.Configuration.IConfiguration configuration, string key, T defaultValue);
public static T? GetValue<T> (this Microsoft.Extensions.Configuration.IConfiguration configuration, string key, T defaultValue);
static member GetValue : Microsoft.Extensions.Configuration.IConfiguration * string * 'T -> 'T
<Extension()>
Public Function GetValue(Of T) (configuration As IConfiguration, key As String, defaultValue As T) As T
Parâmetros de tipo
- T
O tipo no qual converter o valor.
Parâmetros
- configuration
- IConfiguration
A configuração.
- key
- String
A chave do valor da seção de configuração a ser convertido.
- defaultValue
- T
O valor padrão a ser usado se nenhum valor for encontrado.
Retornos
O valor convertido.