3 instantiations of ConnectedEventArgs
Microsoft.TestPlatform.CommunicationUtilities (3)
SocketClient.cs (2)
96
Connected.SafeInvoke(this, new
ConnectedEventArgs
(connectAsyncTask.Exception), "SocketClient: Server Failed to Connect");
102
Connected.SafeInvoke(this, new
ConnectedEventArgs
(_channel), "SocketClient: ServerConnected");
SocketServer.cs (1)
104
Connected.SafeInvoke(this, new
ConnectedEventArgs
(_channel), "SocketServer: ClientConnected");
5 references to ConnectedEventArgs
Microsoft.TestPlatform.CommunicationUtilities (5)
Interfaces\Communication\ConnectedEventArgs.cs (2)
15
/// Initializes a new instance of the <see cref="
ConnectedEventArgs
"/> class.
23
/// Initializes a new instance of the <see cref="
ConnectedEventArgs
"/> class.
Interfaces\ICommunicationEndpoint.cs (1)
13
event EventHandler<
ConnectedEventArgs
> Connected;
SocketClient.cs (1)
47
public event EventHandler<
ConnectedEventArgs
>? Connected;
SocketServer.cs (1)
54
public event EventHandler<
ConnectedEventArgs
>? Connected;