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)