コード例 #1
0
ファイル: TCPEvent.cs プロジェクト: SayHalou/ospy
 public TCPEvent(DateTime timestamp, UInt32 resourceId, SocketEventType type,
                 IPEndpoint localEndpoint, IPEndpoint remoteEndpoint)
 {
     this.timestamp = timestamp;
     this.resourceId = resourceId;
     this.type = type;
     this.localEndpoint = localEndpoint;
     this.remoteEndpoint = remoteEndpoint;
 }
コード例 #2
0
ファイル: SocketEvent.cs プロジェクト: philazzi44/DnDCS
 public ServerEvent(ClientSocket client, SocketEventType eventType, string description = null)
     : this(eventType, description)
 {
     try
     {
         _address = client.Address;
     }
     catch
     {
         _address = "Unknown";
     }
 }
コード例 #3
0
 public SocketEventArgs(SocketEventType e, NetworkPlayer remote)
 {
     socketEvent = e;
     endpoint = remote;
 }
コード例 #4
0
ファイル: SocketEvent.cs プロジェクト: philazzi44/DnDCS
 private ServerEvent(SocketEventType eventType, string description = null)
     : this(description)
 {
     _eventType = eventType;
 }
コード例 #5
0
ファイル: SocketEvent.cs プロジェクト: philazzi44/DnDCS
 public ServerEvent(string address, SocketEventType eventType, string description = null)
     : this(eventType, description)
 {
     _address = address;
 }