Edit

Share via


DeepLinkParser Constructors

Definition

Overloads

DeepLinkParser()

Initializes a new instance of the DeepLinkParser class.

DeepLinkParser(String)

Initializes a new instance of the DeepLinkParser class.

DeepLinkParser(Uri)

Initializes a new instance of the DeepLinkParser class.

DeepLinkParser(IActivatedEventArgs)

Initializes a new instance of the DeepLinkParser class.

DeepLinkParser()

Initializes a new instance of the DeepLinkParser class.

protected DeepLinkParser ();
Protected Sub New ()

Applies to

DeepLinkParser(String)

Initializes a new instance of the DeepLinkParser class.

protected DeepLinkParser (string uri);
new Microsoft.Toolkit.Uwp.Helpers.DeepLinkParser : string -> Microsoft.Toolkit.Uwp.Helpers.DeepLinkParser
Protected Sub New (uri As String)

Parameters

uri
String

The URI.

Exceptions

Thrown if uri is null, empty, or consists only of whitespace characters

Applies to

DeepLinkParser(Uri)

Initializes a new instance of the DeepLinkParser class.

protected DeepLinkParser (Uri uri);
new Microsoft.Toolkit.Uwp.Helpers.DeepLinkParser : Uri -> Microsoft.Toolkit.Uwp.Helpers.DeepLinkParser
Protected Sub New (uri As Uri)

Parameters

uri
Uri

The URI.

Exceptions

Thrown if uri is null

Applies to

DeepLinkParser(IActivatedEventArgs)

Initializes a new instance of the DeepLinkParser class.

protected DeepLinkParser (Windows.ApplicationModel.Activation.IActivatedEventArgs args);
new Microsoft.Toolkit.Uwp.Helpers.DeepLinkParser : Windows.ApplicationModel.Activation.IActivatedEventArgs -> Microsoft.Toolkit.Uwp.Helpers.DeepLinkParser
Protected Sub New (args As IActivatedEventArgs)

Parameters

args
Windows.ApplicationModel.Activation.IActivatedEventArgs

The Windows.ApplicationModel.Activation.IActivatedEventArgs instance containing the event data.

Exceptions

'args' is not an instance of ILaunchActivatedEventArgs or IProtocolActivatedEventArgs - args

Applies to