RegisterPackageOptions.ExternalLocationUri Property

Definition

Gets or sets the URI of an external disk location outside of the MSIX Package where the package manifest can reference application content.

public:
 property Uri ^ ExternalLocationUri { Uri ^ get(); void set(Uri ^ value); };
Uri ExternalLocationUri();

void ExternalLocationUri(Uri value);
public System.Uri ExternalLocationUri { get; set; }
var uri = registerPackageOptions.externalLocationUri;
registerPackageOptions.externalLocationUri = uri;
Public Property ExternalLocationUri As Uri

Property Value

The URI of an external disk location outside of the MSIX package where the package manifest can reference application content.

Remarks

This property can be used when you are granting package identity by packaging with external location. A package with external location contains only a package manifest (not an executable or other application content). The package manifest references application content in an external disk location outside of the package.

In this scenario, you can use the ExternalLocationUri property to specify the location where your application's executable and other content are installed to. In code that is run by your installer or your application, create a RegisterPackageOptions object and assign this property to the external location. Then, call the RegisterPackageByUriAsync method and pass the RegisterPackageOptions object to options parameter.

In most cases, we recommend that you use the ExternalLocationUri property of an AddPackageOptions object in conjunction with the AddPackageByUriAsync method instead of this property and the RegisterPackageByUriAsync method.

Applies to

See also