DeepLinkParser.Create Method
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.
Overloads
Create(String) |
Creates an instance of DeepLinkParser for the given Uri |
Create(Uri) |
Creates an instance of DeepLinkParser for the given Uri |
Create(IActivatedEventArgs) |
Creates an instance of DeepLinkParser for the given Windows.ApplicationModel.Activation.IActivatedEventArgs |
Create(String)
Creates an instance of DeepLinkParser for the given Uri
public static Microsoft.Toolkit.Uwp.Helpers.DeepLinkParser Create (string uri);
static member Create : string -> Microsoft.Toolkit.Uwp.Helpers.DeepLinkParser
Public Shared Function Create (uri As String) As DeepLinkParser
Parameters
- uri
- String
The URI to parse.
Returns
An instance of DeepLinkParser
Remarks
uri
will be tested for null
Applies to
Create(Uri)
Creates an instance of DeepLinkParser for the given Uri
public static Microsoft.Toolkit.Uwp.Helpers.DeepLinkParser Create (Uri uri);
static member Create : Uri -> Microsoft.Toolkit.Uwp.Helpers.DeepLinkParser
Public Shared Function Create (uri As Uri) As DeepLinkParser
Parameters
- uri
- Uri
The URI to parse.
Returns
An instance of DeepLinkParser
Remarks
uri
will be tested for null
Applies to
Create(IActivatedEventArgs)
Creates an instance of DeepLinkParser for the given Windows.ApplicationModel.Activation.IActivatedEventArgs
public static Microsoft.Toolkit.Uwp.Helpers.DeepLinkParser Create (Windows.ApplicationModel.Activation.IActivatedEventArgs args);
static member Create : Windows.ApplicationModel.Activation.IActivatedEventArgs -> Microsoft.Toolkit.Uwp.Helpers.DeepLinkParser
Public Shared Function Create (args As IActivatedEventArgs) As DeepLinkParser
Parameters
- args
- Windows.ApplicationModel.Activation.IActivatedEventArgs
The Windows.ApplicationModel.Activation.IActivatedEventArgs instance containing the launch Uri data.
Returns
An instance of DeepLinkParser
Remarks
args
will be cast to Windows.ApplicationModel.Activation.ILaunchActivatedEventArgs