Exemple #1
0
 public static bool TryParse(JClient j, out CClient client) => CClient.TryParse(j, out client);
Exemple #2
0
 private JClient(CClient value) : this()
 {
     ID   = JID.Value(value.ID);
     Host = JHost.Value(value.Host);
 }
Exemple #3
0
 public static JClient Value(CClient client) => new JClient(client);