다음을 통해 공유


SocketActivityInformation.AllSockets 속성

정의

이 앱에서 소켓 조정 서비스로 전송된 모든 소켓 목록을 가져옵니다.

public:
 static property IMapView<Platform::String ^, SocketActivityInformation ^> ^ AllSockets { IMapView<Platform::String ^, SocketActivityInformation ^> ^ get(); };
static IMapView<winrt::hstring, SocketActivityInformation const&> AllSockets();
public static IReadOnlyDictionary<string,SocketActivityInformation> AllSockets { get; }
var iMapView = SocketActivityInformation.allSockets;
Public Shared ReadOnly Property AllSockets As IReadOnlyDictionary(Of String, SocketActivityInformation)

속성 값

이 앱에서 소켓 조정 서비스로 전송된 모든 소켓 목록입니다.

설명

앱의 새 instance 활성화되고 새 instance 앱의 이전 instance 소켓 브로커로 전송한 소켓의 소유권을 가져오려면 정적 AllSockets 컬렉션을 사용하여 앱과 연결된 소켓을 열거합니다. 컬렉션의 각 소켓에 대해 SocketKind 속성에 표시된 대로 적절한 소켓 개체(DatagramSocket, StreamSocket 또는 StreamSocketListener)를 가져오면 현재 앱 instance 소유권을 이전합니다. 소켓 개체에 속성 getter를 사용하면 소켓의 소유권을 소켓 브로커에서 앱으로 다시 전송합니다.

코드는 소켓의 소유권을 전송할 소켓의 SocketActivityKind 와 일치하는 형식의 소켓 개체로만 전송할 수 있습니다. 잘못된 유형의 소켓 개체를 사용하려고 하면 실패합니다.

적용 대상