Evernote.EDAM.NoteStore.NoteStore.Client.send_copyNote C# (CSharp) Method

send_copyNote() public method

public send_copyNote ( string authenticationToken, string noteGuid, string toNotebookGuid ) : void
authenticationToken string
noteGuid string
toNotebookGuid string
return void
      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
      }

Same methods

NoteStore.Client::send_copyNote ( AsyncCallback callback, object state, string authenticationToken, string noteGuid, string toNotebookGuid ) : IAsyncResult
NoteStore.Client