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

updateNotificationTokenWithBytes() public method

public updateNotificationTokenWithBytes ( NotificationType type, byte token ) : void
type NotificationType
token byte
return void
      public void updateNotificationTokenWithBytes(NotificationType type, byte[] token)
      {
        #if !SILVERLIGHT
        send_updateNotificationTokenWithBytes(type, token);
        recv_updateNotificationTokenWithBytes();

        #else
        var asyncResult = Begin_updateNotificationTokenWithBytes(null, null, type, token);
        End_updateNotificationTokenWithBytes(asyncResult);

        #endif
      }
      #if SILVERLIGHT
TalkService.Client