LineSharp.Datatypes.TalkService.Client.updateNotificationToken C# (CSharp) Method

updateNotificationToken() public method

public updateNotificationToken ( NotificationType type, string token ) : void
type NotificationType
token string
return void
      public void updateNotificationToken(NotificationType type, string token)
      {
        #if !SILVERLIGHT
        send_updateNotificationToken(type, token);
        recv_updateNotificationToken();

        #else
        var asyncResult = Begin_updateNotificationToken(null, null, type, token);
        End_updateNotificationToken(asyncResult);

        #endif
      }
      #if SILVERLIGHT
TalkService.Client