Options.Create<TOptions>(TOptions) 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.
Creates a wrapper around an instance of TOptions
to return itself as an IOptions<TOptions>.
public:
generic <typename TOptions>
where TOptions : class static Microsoft::Extensions::Options::IOptions<TOptions> ^ Create(TOptions options);
public static Microsoft.Extensions.Options.IOptions<TOptions> Create<TOptions> (TOptions options) where TOptions : class;
static member Create : 'Options -> Microsoft.Extensions.Options.IOptions<'Options (requires 'Options : null)> (requires 'Options : null)
Public Shared Function Create(Of TOptions As Class) (options As TOptions) As IOptions(Of TOptions)
Type Parameters
- TOptions
Options type.
Parameters
- options
- TOptions
Options object.
Returns
Wrapped options object.
Applies to
Arbeiten Sie mit uns auf GitHub zusammen
Die Quelle für diesen Inhalt finden Sie auf GitHub, wo Sie auch Issues und Pull Requests erstellen und überprüfen können. Weitere Informationen finden Sie in unserem Leitfaden für Mitwirkende.