3 comments

  1. I’m using the RTM version and the SubscribeEvent completely ignores any userid(i.e. "DomainName\userName") I pass in. It always logs the subscription under the windows Identity I’m logged in under. Am I doing something wrong here?

    davez

  2. where to find subcription ID,.. to unsubscribe from email alerts

    eventEndpoint.UnsubscribeEvent(?);

    Murali

  3. If you want to unsubscribe to the event you need to capture the returned EventID you get back calling the method event Endpoint.SubscribeEvent(…).
    Code would then be something like:int eventId = Endpoint.SubscribeEvent(…).
    Now you can use eventId to unsubscribe later.

    marcelv

Comments are closed.