WebUILaunchActivatedEventArgs.Arguments Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.