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

send_updateNote() public method

public send_updateNote ( string authenticationToken, Evernote note ) : void
authenticationToken string
note Evernote
return void
      public void send_updateNote(string authenticationToken, Evernote.EDAM.Type.Note note)
      #endif
      {
        oprot_.WriteMessageBegin(new TMessage("updateNote", TMessageType.Call, seqid_));
        updateNote_args args = new updateNote_args();
        args.AuthenticationToken = authenticationToken;
        args.Note = note;
        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_updateNote ( AsyncCallback callback, object state, string authenticationToken, Evernote note ) : IAsyncResult
NoteStore.Client