gpt4 book ai didi

.net - 如何使用 IHostedService 访问控制台应用程序中的命令行参数?

转载 作者:行者123 更新时间:2023-12-02 02:21:03 28 4
gpt4 key购买 nike

我不知道如何访问我的 ConsoleHostedService 实现类中的命令行参数。我在源代码中看到 CreateDefaultBuilder(args) 以某种方式将其添加到配置中...命名为 Args...

有主程序:

internal sealed class Program
{
private static async Task Main(string[] args)
{
await Host.CreateDefaultBuilder(args)
.UseContentRoot(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location))
.ConfigureServices((context, services) =>
{
services.AddHostedService<ConsoleHostedService>();
})
.RunConsoleAsync();
}
}

和托管服务:

internal sealed class ConsoleHostedService : IHostedService
{
public ConsoleHostedService(
IHostApplicationLifetime appLifetime,
IServiceProvider serviceProvider)
{
//...
}
}

最佳答案

我不相信有 内置 DI 方法来获取命令行参数 - 但处理命令行参数的原因可能是您的主机应用程序的责任,而这应该是通过 IConfigurationIOptions 等传递主机/环境信息

无论如何,只需定义您自己的注入(inject)剂:

public interface IEntrypointInfo
{
String CommandLine { get; }

IReadOnlyList<String> CommandLineArgs { get; }

// Default interface implementation, requires C# 8.0 or later:
Boolean HasFlag( String flagName )
{
return this.CommandLineArgs.Any( a => ( "-" + a ) == flagName || ( "/" + a ) == flagName );
}
}

/// <summary>Implements <see cref="IEntrypointInfo"/> by exposing data provided by <see cref="System.Environment"/>.</summary>
public class SystemEnvironmentEntrypointInfo : IEntrypointInfo
{
public String CommandLine => System.Environment.CommandLine;

public IReadOnlyList<String> CommandLineArgs => System.Environment.GetCommandLineArgs();
}

/// <summary>Implements <see cref="IEntrypointInfo"/> by exposing provided data.</summary>
public class SimpleEntrypointInfo : IEntrypointInfo
{
public SimpleEntrypointInfo( String commandLine, String[] commandLineArgs )
{
this.CommandLine = commandLine ?? throw new ArgumentNullException(nameof(commandLine));
this.CommandLineArgs = commandLineArgs ?? throw new ArgumentNullException(nameof(commandLineArgs));
}

public String CommandLine { get; }

public IReadOnlyList<String> CommandLineArgs { get; }
}

//

public static class Program
{
public static async Task Main( String[] args )
{
await Host.CreateDefaultBuilder( args )
.UseContentRoot(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location))
.ConfigureServices((context, services) =>
{
services.AddHostedService<ConsoleHostedService>();
services.AddSingleton<IEntrypointInfo,SystemEnvironmentEntrypointInfo>()
})
.RunConsoleAsync();
}

对于自动化单元和集成测试,请使用 SimpleEntrypointInfo

关于.net - 如何使用 IHostedService 访问控制台应用程序中的命令行参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66426732/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com