From 8d31964437c6bddfaa0979f93811489ffc4d5f18 Mon Sep 17 00:00:00 2001 From: Peter Smith Date: Sat, 31 Jan 2026 21:08:52 -0800 Subject: [PATCH] Clarify LaunchActivatedEventArgs.Arguments description This had been documented as a "list" (and named that way, too). But it's not a list; it's a flat string --- .../launchactivatedeventargs_arguments.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/windows.applicationmodel.activation/launchactivatedeventargs_arguments.md b/windows.applicationmodel.activation/launchactivatedeventargs_arguments.md index cec68ebb2c..33a9fa0dba 100644 --- a/windows.applicationmodel.activation/launchactivatedeventargs_arguments.md +++ b/windows.applicationmodel.activation/launchactivatedeventargs_arguments.md @@ -10,10 +10,10 @@ public string Arguments { get; } # Windows.ApplicationModel.Activation.LaunchActivatedEventArgs.Arguments ## -description -Gets the arguments that are passed to the app during its launch activation. +Gets the argument that is passed to the app during its launch activation. ## -property-value -The list of arguments. This value can be used to control the behavior of the app when it is launched through a secondary tile or through a toast. +The launch arguments as a single string. This value can be used to control the behavior of the app when it is launched through a secondary tile or through a toast. ## -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. This argument string comes from a property such as [SecondaryTile.Arguments](../windows.ui.startscreen/secondarytile_arguments.md) or a toast's XML payload, through the *launch* attribute of the [toast](/uwp/schemas/tiles/toastschema/element-toast) element or the *arguments* attribute of the [command](/uwp/schemas/tiles/toastschema/element-command) element.