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

send_getNote() public method

public send_getNote ( string authenticationToken, string guid, bool withContent, bool withResourcesData, bool withResourcesRecognition, bool withResourcesAlternateData ) : void
authenticationToken string
guid string
withContent bool
withResourcesData bool
withResourcesRecognition bool
withResourcesAlternateData bool
return void
      public void send_getNote(string authenticationToken, string guid, bool withContent, bool withResourcesData, bool withResourcesRecognition, bool withResourcesAlternateData)
      #endif
      {
        oprot_.WriteMessageBegin(new TMessage("getNote", TMessageType.Call, seqid_));
        getNote_args args = new getNote_args();
        args.AuthenticationToken = authenticationToken;
        args.Guid = guid;
        args.WithContent = withContent;
        args.WithResourcesData = withResourcesData;
        args.WithResourcesRecognition = withResourcesRecognition;
        args.WithResourcesAlternateData = withResourcesAlternateData;
        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_getNote ( AsyncCallback callback, object state, string authenticationToken, string guid, bool withContent, bool withResourcesData, bool withResourcesRecognition, bool withResourcesAlternateData ) : IAsyncResult
NoteStore.Client