ワンクリックで
ioptions-pattern-migration
Migrate from manual configuration binding to ASP.NET Core IOptions pattern
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Migrate from manual configuration binding to ASP.NET Core IOptions pattern
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Authorization Code Flow for web applications using MSAL.NET confidential client to sign in users and access APIs on their behalf
Handle MSAL distributed token cache collisions and stale entries in ASP.NET Core applications
On-Behalf-Of (OBO) Flow for web APIs to call downstream APIs while preserving user identity in MSAL.NET
{what this skill teaches agents}
Review API DTO implementations for contract/domain separation, mapping patterns, and REST compliance
This skill should be used when the user asks to "build a feature", "fix a bug", "implement something", "start a dev cycle", types "/dev", or describes a software task that requires design, implementation, testing, and shipping. Orchestrates the full software development lifecycle from interrogation through shipping, with self-learning that improves over time.
| name | ioptions-pattern-migration |
| description | Migrate from manual configuration binding to ASP.NET Core IOptions pattern |
Category: .NET Configuration
Complexity: Intermediate
Tags: #aspnetcore #ioptions #configuration #dependency-injection
config.Bind() + TryAddSingleton() pattern to ASP.NET Core IOptionsBefore:
var settings = new MySettings();
builder.Configuration.Bind("MySection", settings);
builder.Services.TryAddSingleton<IMySettings>(settings);
After:
builder.Services.Configure<MySettings>(builder.Configuration.GetSection("MySection"));
builder.Services.AddOptions<MySettings>()
.ValidateDataAnnotations()
.ValidateOnStart();
Before:
public class MyService
{
private readonly IMySettings _settings;
public MyService(IMySettings settings)
{
_settings = settings;
}
}
After:
using Microsoft.Extensions.Options;
public class MyService
{
private readonly MySettings _settings;
public MyService(IOptions<MySettings> settingsOptions)
{
_settings = settingsOptions.Value;
}
}
Before:
var mockSettings = new Mock<IMySettings>();
mockSettings.Setup(s => s.Property).Returns("value");
var sut = new MyService(mockSettings.Object);
After:
using Microsoft.Extensions.Options;
var settings = new MySettings { Property = "value" };
var settingsOptions = Options.Create(settings);
var sut = new MyService(settingsOptions);
using System.ComponentModel.DataAnnotations;
public class MySettings
{
[Required]
[Url]
public required string ApiBaseUrl { get; set; }
[Range(1, 3600)]
public int TimeoutSeconds { get; set; } = 30;
}
Razor views should inject IOptions<T> and unwrap in a code block:
@using Microsoft.Extensions.Options
@inject IOptions<Settings> SettingsOptions
@{
var settings = SettingsOptions.Value;
}
<img src="@settings.StaticContentRootUrl/logo.png" />
If unwrapping in constructor, store the unwrapped value:
private readonly string _apiUrl;
public MyService(IOptions<Settings> options)
{
_apiUrl = options.Value.ApiUrl; // ✅ Unwrap once, store value
}
Pick one pattern per project for consistency.
Use IOptionsSnapshot<T> instead of IOptions<T> if:
builder.Services.AddScoped<IMyService, MyService>();
public MyService(IOptionsSnapshot<MySettings> settings) { }
builder.Services.AddOptions<MySettings>()
.ValidateDataAnnotations()
.ValidateOnStart();
builder.Services.AddOptions<MySettings>()
.Validate(settings => !string.IsNullOrWhiteSpace(settings.ApiKey),
"ApiKey must be provided")
.ValidateOnStart();
public class MySettingsValidator : IValidateOptions<MySettings>
{
public ValidateOptionsResult Validate(string? name, MySettings options)
{
if (string.IsNullOrWhiteSpace(options.ApiKey))
return ValidateOptionsResult.Fail("ApiKey is required");
return ValidateOptionsResult.Success;
}
}
builder.Services.AddSingleton<IValidateOptions<MySettings>, MySettingsValidator>();
✅ Early validation (fail-fast at startup)
✅ Better testability (Options.Create() for tests)
✅ Standard ASP.NET Core pattern
✅ Supports config reloading (with IOptionsSnapshot)
✅ Type-safe configuration access