Class CallbackDefault

The default ICallback implementation.

Inheritance
System.Object
CallbackDefault
ChangePrincipalCallbackDefault
SubscriptionCallbackDefault
TopicControlAddCallbackDefault
PingCallbackDefault
TopicsCompletionCallbackDefault
Implements
ICallback
Namespace: PushTechnology.ClientInterface.Client.Features
Assembly: Diffusion.Client.dll
Syntax
public class CallbackDefault : object, ICallback
Remarks

This simply logs any OnDiscard() response at 'warn' level. The method should be overridden if anything other than a logged warning would be required in such an eventuality.

Methods

OnDiscard()

Called to notify that a call context was closed prematurely, typically due to a timeout or the session being closed.

Declaration
public virtual void OnDiscard()
Remarks

No further calls will be made for the context.

Implements

ICallback
Back to top