WiFiDirectServiceAdvertiser.ConnectAsync メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
ConnectAsync(DeviceInformation) |
PIN を必要とせずにセッション要求を受け入れます。 |
ConnectAsync(DeviceInformation, String) |
指定された PIN を使用して接続することで、セッション要求を受け入れます。 |
ConnectAsync(DeviceInformation)
PIN を必要とせずにセッション要求を受け入れます。
public:
virtual IAsyncOperation<WiFiDirectServiceSession ^> ^ ConnectAsync(DeviceInformation ^ deviceInfo) = ConnectAsync;
/// [Windows.Foundation.Metadata.Overload("ConnectAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<WiFiDirectServiceSession> ConnectAsync(DeviceInformation const& deviceInfo);
[Windows.Foundation.Metadata.Overload("ConnectAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<WiFiDirectServiceSession> ConnectAsync(DeviceInformation deviceInfo);
function connectAsync(deviceInfo)
Public Function ConnectAsync (deviceInfo As DeviceInformation) As IAsyncOperation(Of WiFiDirectServiceSession)
パラメーター
- deviceInfo
- DeviceInformation
接続するデバイスについて説明します。 WiFiDirectServiceSessionRequestedEventArgs.DeviceInformation プロパティ値を渡します。
戻り値
非同期接続操作。 正常に完了すると、 は、作成されたセッションを記述する オブジェクトを返します。
- 属性
こちらもご覧ください
適用対象
ConnectAsync(DeviceInformation, String)
指定された PIN を使用して接続することで、セッション要求を受け入れます。
public:
virtual IAsyncOperation<WiFiDirectServiceSession ^> ^ ConnectAsync(DeviceInformation ^ deviceInfo, Platform::String ^ pin) = ConnectAsync;
/// [Windows.Foundation.Metadata.Overload("ConnectAsyncWithPin")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<WiFiDirectServiceSession> ConnectAsync(DeviceInformation const& deviceInfo, winrt::hstring const& pin);
[Windows.Foundation.Metadata.Overload("ConnectAsyncWithPin")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<WiFiDirectServiceSession> ConnectAsync(DeviceInformation deviceInfo, string pin);
function connectAsync(deviceInfo, pin)
Public Function ConnectAsync (deviceInfo As DeviceInformation, pin As String) As IAsyncOperation(Of WiFiDirectServiceSession)
パラメーター
- deviceInfo
- DeviceInformation
接続するデバイスについて説明します。 WiFiDirectServiceSessionRequestedEventArgs.DeviceInformation プロパティ値を渡します。
- pin
-
String
Platform::String
winrt::hstring
セッションの構成に使用する PIN。
戻り値
非同期接続操作。 正常に完了すると、 は、作成されたセッションを記述する オブジェクトを返します。
- 属性