// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Diagnostics.CodeAnalysis;
namespace Microsoft.Extensions.Options
{
/// <summary>
/// Wraps the options instance.
/// </summary>
/// <typeparam name="TOptions">The options type.</typeparam>
public class OptionsWrapper<[DynamicallyAccessedMembers(Options.DynamicallyAccessedMembers)] TOptions> :
IOptions<TOptions>
where TOptions : class
{
/// <summary>
/// Initializes the wrapper with the options instance to return.
/// </summary>
/// <param name="options">The options instance to return.</param>
public OptionsWrapper(TOptions options)
{
Value = options;
}
/// <summary>
/// Gets the options instance.
/// </summary>
public TOptions Value { get; }
}
}
|