Example #1
0
 public void send_copyNote(string authenticationToken, string noteGuid, string toNotebookGuid)
 #endif
 {
   oprot_.WriteMessageBegin(new TMessage("copyNote", TMessageType.Call, seqid_));
   copyNote_args args = new copyNote_args();
   args.AuthenticationToken = authenticationToken;
   args.NoteGuid = noteGuid;
   args.ToNotebookGuid = toNotebookGuid;
   args.Write(oprot_);
   oprot_.WriteMessageEnd();
   #if SILVERLIGHT || NETFX_CORE
   return oprot_.Transport.BeginFlush(callback, state);
   #else
   oprot_.Transport.Flush();
   #endif
 }
Example #2
0
 public void send_copyNote(string authenticationToken, string noteGuid, string toNotebookGuid)
 {
     oprot_.WriteMessageBegin(new TMessage("copyNote", TMessageType.Call, seqid_));
     copyNote_args args = new copyNote_args();
     args.AuthenticationToken = authenticationToken;
     args.NoteGuid = noteGuid;
     args.ToNotebookGuid = toNotebookGuid;
     args.Write(oprot_);
     oprot_.WriteMessageEnd();
     oprot_.Transport.Flush();
 }