/// <summary>
 /// Checks the subscriber's subscription to see if it's still active.
 /// </summary>
 /// <param name="subscriber">The subscriber.</param>
 /// <returns>
 /// true if the subscription is still active, otherwise false
 /// </returns>
 public bool SubscriptionActive(Uri subscriber)
 {
     return(EventPublisher.CheckSubscription(subscriber));
 }