WebUIView.CreateAsync 方法

定义

重载

CreateAsync()

创建新视图作为异步操作。

CreateAsync(Uri)

创建具有特定参数的新视图,作为异步操作。

CreateAsync()

创建新视图作为异步操作。

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)

返回

创建的视图。

属性

适用于

CreateAsync(Uri)

创建具有特定参数的新视图,作为异步操作。

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)

参数

uri
Uri Uri

用于打开视图的 URI。

返回

创建的视图。

属性

适用于