3 instantiations of ConnectedEventArgs
Microsoft.TestPlatform.CommunicationUtilities (3)
SocketClient.cs (2)
96Connected.SafeInvoke(this, new ConnectedEventArgs(connectAsyncTask.Exception), "SocketClient: Server Failed to Connect"); 102Connected.SafeInvoke(this, new ConnectedEventArgs(_channel), "SocketClient: ServerConnected");
SocketServer.cs (1)
104Connected.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)
13event EventHandler<ConnectedEventArgs> Connected;
SocketClient.cs (1)
47public event EventHandler<ConnectedEventArgs>? Connected;
SocketServer.cs (1)
54public event EventHandler<ConnectedEventArgs>? Connected;