Inheritance: ConnectionEventArgs
Esempio n. 1
0
 protected virtual void TriggerOnTcpConnection(Connection connection)
 {
     if (this.OnTcpConnection != null)
     {
         OnTcpConnectionArgs lEventArgs = new OnTcpConnectionArgs(connection);
         this.OnTcpConnection(this, lEventArgs);
     }
 }
Esempio n. 2
0
		protected virtual void TriggerOnTcpConnection(Connection connection)
		{
			if (this.OnTcpConnection != null)
			{
				OnTcpConnectionArgs lEventArgs = new OnTcpConnectionArgs(connection);
				this.OnTcpConnection(this, lEventArgs);
			}
		}