Ejemplo n.º 1
0
 /// <summary>Creates an <see cref="OutgoingRequestFrame"/> for operation ice_ping.</summary>
 /// <param name="proxy">Proxy to the target Ice Object.</param>
 /// <param name="context">The context to write into the request.</param>
 /// <param name="cancel">A cancellation token that receives the cancellation requests.</param>
 /// <returns>A new <see cref="OutgoingRequestFrame"/>.</returns>
 public static OutgoingRequestFrame IcePing(
     IObjectPrx proxy,
     IReadOnlyDictionary <string, string>?context,
     CancellationToken cancel) =>
 OutgoingRequestFrame.WithEmptyArgs(proxy, "ice_ping", idempotent: true, context, cancel);
Ejemplo n.º 2
0
 /// <summary>Creates an <see cref="OutgoingRequestFrame"/> for operation ice_ids.</summary>
 /// <param name="proxy">Proxy to the target Ice Object.</param>
 /// <param name="context">The context to write into the request.</param>
 /// <returns>A new <see cref="OutgoingRequestFrame"/>.</returns>
 public static OutgoingRequestFrame IceIds(IObjectPrx proxy, IReadOnlyDictionary <string, string>?context) =>
 OutgoingRequestFrame.WithEmptyArgs(proxy, "ice_ids", idempotent: true, context);