Override this method and place code that your App will execute in response to the user clicking on your App's active Notification.

Namespace:  RedCritterV1
Assembly:  RedCritterV1 (in RedCritterV1.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

      
 C#  Visual Basic 
public virtual void OnNotificationClick()
Public Overridable Sub OnNotificationClick

Examples

CopyC#
public override void OnNotificationClick()
{
    //Your App's notification was clicked take action here.

    //Clear the notification if it is no longer needed.
    ClearNotification();
}

See Also