WebUIView.CreateAsync Method

Definition

Overloads

CreateAsync()

Creates a new view as an asynchronous action.

CreateAsync(Uri)

Creates a new view with specific arguments, as an asynchronous action.

CreateAsync()

Creates a new view as an asynchronous action.

public:
 static IAsyncOperation<WebUIView ^> ^ CreateAsync();
/// [Windows.Foundation.Metadata.Overload("CreateAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<WebUIView> CreateAsync();
[Windows.Foundation.Metadata.Overload("CreateAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<WebUIView> CreateAsync();
function createAsync()
Public Shared Function CreateAsync () As IAsyncOperation(Of WebUIView)

Returns

The created view.

Attributes

Applies to

CreateAsync(Uri)

Creates a new view with specific arguments, as an asynchronous action.

public:
 static IAsyncOperation<WebUIView ^> ^ CreateAsync(Uri ^ uri);
/// [Windows.Foundation.Metadata.Overload("CreateWithUriAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<WebUIView> CreateAsync(Uri const& uri);
[Windows.Foundation.Metadata.Overload("CreateWithUriAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<WebUIView> CreateAsync(System.Uri uri);
function createAsync(uri)
Public Shared Function CreateAsync (uri As Uri) As IAsyncOperation(Of WebUIView)

Parameters

uri
Uri Uri

The URI to open the view with.

Returns

The created view.

Attributes

Applies to