示例#1
0
 public void OnReplySyncNode(DataLinkCollection sender, string host, ushort port, string name)
 {
 }
示例#2
0
 public Program()
 {
     _dlc = new DataLinkCollection(nameof(Program), this, Guid.NewGuid().ToString(), Port);
     _dlf = new DataLinkFactory(this, this, Port, new X509Certificate2(s_certPath, s_certPassword));
 }
示例#3
0
 public void OnHealthyChanged(DataLinkCollection sender, DataLink dataLink)
 {
     Console.WriteLine($"Healthy: {dataLink.IsHealthy}");
 }