AppUriHandlerHost Constructors

Definition

Overloads

AppUriHandlerHost()

Default constructor for AppUriHandlerHost.

AppUriHandlerHost(String)

Constructor for AppUriHandlerHost which sets the name as well.

AppUriHandlerHost()

Default constructor for AppUriHandlerHost.

public:
 AppUriHandlerHost();
 AppUriHandlerHost();
public AppUriHandlerHost();
function AppUriHandlerHost()
Public Sub New ()

Examples

AppUriHandlerHost host = new AppUriHandlerHost();

See also

Applies to

AppUriHandlerHost(String)

Constructor for AppUriHandlerHost which sets the name as well.

public:
 AppUriHandlerHost(Platform::String ^ name);
 AppUriHandlerHost(winrt::hstring const& name);
public AppUriHandlerHost(string name);
function AppUriHandlerHost(name)
Public Sub New (name As String)

Parameters

name
String

Platform::String

winrt::hstring

A website hostname.

Examples

AppUriHandlerHost host = new AppUriHandlerHost("www.contoso.com");

See also

Applies to