Interface IPingCallback

The callback interface for IPings operations.

Inherited Members
ICallback.OnDiscard()
Namespace: PushTechnology.ClientInterface.Client.Features
Assembly: Diffusion.Client.dll
Syntax
public interface IPingCallback : ICallback
Remarks

Caution

Deprecated since 6.7. Methods that use callbacks are deprecated and will be removed in a future release. Use a Task instead.

Methods

OnPingResponse(IPingDetails)

Called when the server responds to a ping operation.

Declaration
void OnPingResponse(IPingDetails details)
Parameters
Type Name Description
IPingDetails details

Information relating to the ping.

Back to top