AddSystemServices メソッド
| 編集/提案 ソースを表示AddSystemServices(IConfiguration)
全てのシステムサービスを既定の設定で実行環境に登録します。
宣言
public static IConfiguration AddSystemServices(this IConfiguration config)
引数
型 | 名前 | 説明 |
---|---|---|
IConfiguration | config | 登録先の構成設定です。 |
戻り値
型 | 説明 |
---|---|
IConfiguration |
|
AddSystemServices(IConfiguration, Func<FileSystemServiceOptions, Task>, Func<SettingsSystemServiceOptions, Task>, Func<CommandLineServiceOptions, Task>, Func<LoggingSystemServiceOptions, Task>)
全てのシステムサービスを既定の設定で実行環境に登録します。
宣言
public static IConfiguration AddSystemServices(this IConfiguration config, Func<FileSystemServiceOptions, Task> fileSystemOptions = null, Func<SettingsSystemServiceOptions, Task> settingsSystemOptions = null, Func<CommandLineServiceOptions, Task> commandLineOptions = null, Func<LoggingSystemServiceOptions, Task> loggingSystemOptions = null)
引数
型 | 名前 | 説明 |
---|---|---|
IConfiguration | config | 登録先の構成設定です。 |
System.Func<FileSystemServiceOptions, System.Threading.Tasks.Task> | fileSystemOptions | IFileSystemServiceの設定を行います。 |
System.Func<SettingsSystemServiceOptions, System.Threading.Tasks.Task> | settingsSystemOptions | ISettingsSystemServiceの設定を行います。 |
System.Func<CommandLineServiceOptions, System.Threading.Tasks.Task> | commandLineOptions | ICommandLineServiceの設定を行います。 |
System.Func<LoggingSystemServiceOptions, System.Threading.Tasks.Task> | loggingSystemOptions | ILoggingSystemServiceの設定を行います。 |
戻り値
型 | 説明 |
---|---|
IConfiguration |
|