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입니다.
반환
비동기 연결 작업입니다. 성공적으로 완료되면 생성된 세션을 설명하는 개체를 반환합니다.
- 특성