ConfigurationBinder.GetValue Methode
Definitie
Belangrijk
Bepaalde informatie heeft betrekking op een voorlopige productversie die aanzienlijk kan worden gewijzigd voordat deze wordt uitgebracht. Microsoft biedt geen enkele expliciete of impliciete garanties met betrekking tot de informatie die hier wordt verstrekt.
Overloads
| Name | Description |
|---|---|
| GetValue(IConfiguration, Type, String) |
Extraheert de waarde met de opgegeven sleutel en converteert deze naar het opgegeven type. |
| GetValue(IConfiguration, Type, String, Object) |
Extraheert de waarde met de opgegeven sleutel en converteert deze naar het opgegeven type. |
| GetValue<T>(IConfiguration, String) |
Extraheert de waarde met de opgegeven sleutel en converteert deze naar het type T. |
| GetValue<T>(IConfiguration, String, T) |
Extraheert de waarde met de opgegeven sleutel en converteert deze naar het type T. |
GetValue(IConfiguration, Type, String)
Extraheert de waarde met de opgegeven sleutel en converteert deze naar het opgegeven type.
public:
[System::Runtime::CompilerServices::Extension]
static System::Object ^ GetValue(Microsoft::Extensions::Configuration::IConfiguration ^ configuration, Type ^ type, System::String ^ key);
[System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("In case the type is non-primitive, the trimmer cannot statically analyze the object's type so its members may be trimmed.")]
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);
[<System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("In case the type is non-primitive, the trimmer cannot statically analyze the object's type so its members may be trimmed.")>]
static member GetValue : Microsoft.Extensions.Configuration.IConfiguration * Type * string -> obj
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
Parameters
- configuration
- IConfiguration
De configuratie.
- type
- Type
Het type waar de waarde naar moet worden geconverteerd.
- key
- String
De sleutel van de waarde van de configuratiesectie die moet worden geconverteerd.
Retouren
De geconverteerde waarde.
- Kenmerken
Van toepassing op
GetValue(IConfiguration, Type, String, Object)
Extraheert de waarde met de opgegeven sleutel en converteert deze naar het opgegeven type.
public:
[System::Runtime::CompilerServices::Extension]
static System::Object ^ GetValue(Microsoft::Extensions::Configuration::IConfiguration ^ configuration, Type ^ type, System::String ^ key, System::Object ^ defaultValue);
[System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("In case the type is non-primitive, the trimmer cannot statically analyze the object's type so its members may be trimmed.")]
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);
[<System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("In case the type is non-primitive, the trimmer cannot statically analyze the object's type so its members may be trimmed.")>]
static member GetValue : Microsoft.Extensions.Configuration.IConfiguration * Type * string * obj -> obj
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
Parameters
- configuration
- IConfiguration
De configuratie.
- type
- Type
Het type waar de waarde naar moet worden geconverteerd.
- key
- String
De sleutel van de waarde van de configuratiesectie die moet worden geconverteerd.
- defaultValue
- Object
De standaardwaarde die moet worden gebruikt als er geen waarde wordt gevonden.
Retouren
De geconverteerde waarde.
- Kenmerken
Van toepassing op
GetValue<T>(IConfiguration, String)
Extraheert de waarde met de opgegeven sleutel en converteert deze naar het type T.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static T GetValue(Microsoft::Extensions::Configuration::IConfiguration ^ configuration, System::String ^ key);
[System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("In case the type is non-primitive, the trimmer cannot statically analyze the object's type so its members may be trimmed.")]
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);
[<System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("In case the type is non-primitive, the trimmer cannot statically analyze the object's type so its members may be trimmed.")>]
static member GetValue : Microsoft.Extensions.Configuration.IConfiguration * string -> 'T
static member GetValue : Microsoft.Extensions.Configuration.IConfiguration * string -> 'T
<Extension()>
Public Function GetValue(Of T) (configuration As IConfiguration, key As String) As T
Type parameters
- T
Het type waar de waarde naar moet worden geconverteerd.
Parameters
- configuration
- IConfiguration
De configuratie.
- key
- String
De sleutel van de waarde van de configuratiesectie die moet worden geconverteerd.
Retouren
De geconverteerde waarde.
- Kenmerken
Van toepassing op
GetValue<T>(IConfiguration, String, T)
Extraheert de waarde met de opgegeven sleutel en converteert deze naar het type T.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static T GetValue(Microsoft::Extensions::Configuration::IConfiguration ^ configuration, System::String ^ key, T defaultValue);
[System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("In case the type is non-primitive, the trimmer cannot statically analyze the object's type so its members may be trimmed.")]
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);
[<System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("In case the type is non-primitive, the trimmer cannot statically analyze the object's type so its members may be trimmed.")>]
static member GetValue : Microsoft.Extensions.Configuration.IConfiguration * string * 'T -> 'T
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
Type parameters
- T
Het type waar de waarde naar moet worden geconverteerd.
Parameters
- configuration
- IConfiguration
De configuratie.
- key
- String
De sleutel van de waarde van de configuratiesectie die moet worden geconverteerd.
- defaultValue
- T
De standaardwaarde die moet worden gebruikt als er geen waarde wordt gevonden.
Retouren
De geconverteerde waarde.
- Kenmerken