• Webinars
  • Docs
  • Download
  • Blogs
  • Contact Us
Try Free
Show / Hide Table of Contents

Method UnRegisterClearNotification

UnRegisterClearNotification(ContinuousQueryClearCallback)

This method Unregisters the clear callback

Declaration
public void UnRegisterClearNotification(ContinuousQueryClearCallback callback)
Parameters
Type Name Description
ContinuousQueryClearCallback callback

A delegate to register your custom method with

Examples

Lets consider we registered a ClearNotification

 public static void CacheCleared()
  {
    ...
  }

Then unregister your notification callback

cQ.UnRegisterClearNotification(new ContinuousQueryClearCallback(CacheCleared));
Back to top Copyright © 2017 Alachisoft