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

sendChatChecked() public method

public sendChatChecked ( int seq, string consumer, string lastMessageId ) : void
seq int
consumer string
lastMessageId string
return void
      public void sendChatChecked(int seq, string consumer, string lastMessageId)
      {
        #if !SILVERLIGHT
        send_sendChatChecked(seq, consumer, lastMessageId);
        recv_sendChatChecked();

        #else
        var asyncResult = Begin_sendChatChecked(null, null, seq, consumer, lastMessageId);
        End_sendChatChecked(asyncResult);

        #endif
      }
      #if SILVERLIGHT
TalkService.Client