Beispiel #1
0
 public void SendByteSeq(byte[] seq, IPingReplyPrx?reply, Current current, CancellationToken cancel)
 {
     try
     {
         reply?.Clone(preferNonSecure: true).Reply(cancel: cancel);
     }
     catch
     {
         TestHelper.Assert(false);
     }
 }
Beispiel #2
0
 public void Ping(IPingReplyPrx reply, Current current, CancellationToken cancel)
 {
     try
     {
         reply.Clone(preferNonSecure: true).Reply(cancel: cancel);
     }
     catch
     {
         TestHelper.Assert(false);
     }
 }