Ejemplo n.º 1
0
 public bool Equals(ServerKey other) => (IpAddress == other.IpAddress) && (Port == other.Port);
Ejemplo n.º 2
0
 public ArmaServerInfo(int index, ServerKey key) : base(key.ToIpEndpoint()) {
     Index = index;
     Key = key;
 }
Ejemplo n.º 3
0
 public ArmaServer(int index, ServerKey key, ServerInfoRulesFetcher fetcher)
     : this(new ArmaServerInfo(index, key), fetcher) {}
Ejemplo n.º 4
0
 public ArmaServerInfo(int index, ServerKey key) : base(key.ToIpEndpoint())
 {
     Index = index;
     Key   = key;
 }
Ejemplo n.º 5
0
 public ArmaServer(int index, ServerKey key, ServerInfoRulesFetcher fetcher)
     : this(new ArmaServerInfo(index, key), fetcher)
 {
 }
Ejemplo n.º 6
0
 public bool Equals(ServerKey other) => (IpAddress == other.IpAddress) && (Port == other.Port);