Occurs in response to a RaiseCustomEvent(Object, Object) method call.

Namespace: Alachisoft.NCache.Web.Caching
Assembly: Alachisoft.NCache.Web (in Alachisoft.NCache.Web.dll) Version: 4.1.0.0 (4.1.0.0)

Syntax

C#
public override event CustomEventCallback CustomEvent
Visual Basic
Public Overrides Event CustomEvent As CustomEventCallback
Visual C++
public:
virtual  event CustomEventCallback^ CustomEvent {
	void add (CustomEventCallback^ value);
	void remove (CustomEventCallback^ value);
}

Remarks

You can use this event to handle custom application defined event notifications.

Doing a lot of processing inside the handler might have an impact on the performance of the cache and cluster. It is therefore advisable to do minimal processing inside the handler.

For more information on how to use this callback see the documentation for CustomEventCallback.

See Also