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

sendContentReceipt() public method

public sendContentReceipt ( int seq, string consumer, string messageId ) : void
seq int
consumer string
messageId string
return void
      public void sendContentReceipt(int seq, string consumer, string messageId)
      {
        #if !SILVERLIGHT
        send_sendContentReceipt(seq, consumer, messageId);
        recv_sendContentReceipt();

        #else
        var asyncResult = Begin_sendContentReceipt(null, null, seq, consumer, messageId);
        End_sendContentReceipt(asyncResult);

        #endif
      }
      #if SILVERLIGHT
TalkService.Client