AppShellExecuteInfoUseUrl Property
Gets or sets a value indicating whether the application can accept a URL (instead of a file name) on the command line.
Applications that can open documents directly from the internet, like web browsers and media players,
should set this entry.
When the
ShellExecuteEx function starts an application and the
UseUrl=True value is not set,
ShellExecuteEx downloads the document to a local file and invokes the handler on the local copy.
Namespace: DevCase.Core.Windows.ApplicationsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public bool UseUrl { get; set; }
Public Property UseUrl As Boolean
Get
Set
Dim instance As AppShellExecuteInfo
Dim value As Boolean
value = instance.UseUrl
instance.UseUrl = value
public:
property bool UseUrl {
bool get ();
void set (bool value);
}
member UseUrl : bool with get, set
No code example is currently available or this language may not be supported.
Property Value
Boolean if the application can accept a URL (instead of a file name) on the command line;
otherwise,
.