LaunchActivatedEventArgs.Arguments 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取在启动期间传递给应用程序的参数。
public:
property Platform::String ^ Arguments { Platform::String ^ get(); };
winrt::hstring Arguments();
public string Arguments { get; }
var string = launchActivatedEventArgs.arguments;
Public ReadOnly Property Arguments As String
属性值
桌面应用中始终为空字符串。
注解
重要
此属性未使用,并且始终返回空字符串。
可以通过调用以下方法检索当前进程的命令行参数:
- [C#] Environment.GetCommandLineArgs() (需要完全信任才能执行)
- [C++] GetCommandLineA function (processenv.h)