WebUILaunchActivatedEventArgs.Arguments Property

Definition

Gets the arguments that are passed to the app during its launch activation.

public:
 property Platform::String ^ Arguments { Platform::String ^ get(); };
winrt::hstring Arguments();
public string Arguments { get; }
var string = webUILaunchActivatedEventArgs.arguments;
Public ReadOnly Property Arguments As String

Property Value

String

Platform::String

winrt::hstring

The list of arguments.

Implements

Remarks

These arguments provide additional context for this activation. Similar to command-line arguments, this string can be parsed by an app to determine what action it should take in response to this activation.

Note

An app should always regard the arguments string as untrusted data and must parse and validate the string carefully before taking action based on its contents. Blindly using the arguments string without examining it first can present a security risk.

Applies to