コード例 #1
0
ファイル: AsyncSocket.cs プロジェクト: hostar/xmpp
 public AsyncSocket()
 {
     wait = new EventWaitHandle(false, EventResetMode.AutoReset);
     _destinationAddress = new Address();
 }
コード例 #2
0
ファイル: AsyncSocket.cs プロジェクト: shubhanshusingh/xmpp
 public AsyncSocket()
 {
     _destinationAddress = new Address();
 }
コード例 #3
0
ファイル: AsyncSocket.cs プロジェクト: nairaner/xmpp
 public AsyncSocket()
 {
     _destinationAddress = new Address();
     ProtocolState.Events.OnSend += Events_OnSend;
 }