/// <summary> /// /// </summary> public new void Start() { try { base.Start(); } catch (SocketException socketEx) { string msg = string.Format( "listen port '{0}' fail", this.LocalEndpoint ); C3Exception c3ex = new C3Exception(msg, socketEx); throw c3ex; } this.BeginAcceptSocketHelper(); }
/// <summary> /// /// </summary> public new void Start() { try { base.Start(); } catch (SocketException socketEx) { string msg = string.Format ( "listen port '{0}' fail", this.LocalEndpoint ); C3Exception c3ex = new C3Exception(msg, socketEx); throw c3ex; } this.BeginAcceptSocketHelper(); }