Squishy.Irc.IrcClient.ConnectingNotify C# (CSharp) Method

ConnectingNotify() private method

private ConnectingNotify ( ) : void
return void
        internal void ConnectingNotify()
        {
            OnConnecting();
        }

Usage Example

Example #1
0
 private void OnConnecting(Connection con)
 {
     if (Util.ExternalAddress != null)
     {
         try
         {
             // try to bind to given external address
             con.Socket.Bind(new IPEndPoint(Util.ExternalAddress, 0));
         }
         catch
         {
         }
     }
     m_irc.ConnectingNotify();
 }