Integration in Windows
The push library must be initialized once in your application:
TikPushServcie.PushService pushService = TikPushService.PushService.StartWithToken("YOUR_SUBSCRIBE_TOKEN")
The resulting object has the following methods:
void RegisterForChannel(String channel)
void RegisterForChannel(String channel, long expiresAt)
void RegisterForChannel(String channel, DateTime expiresAt)
void UnregisterForChannel(String channel
Boolean IsRegisteredForChannel(String channel))
Please check with the iOS section to get a description of how these methods work.