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

send_getNoteApplicationDataEntry() public method

public send_getNoteApplicationDataEntry ( string authenticationToken, string guid, string key ) : void
authenticationToken string
guid string
key string
return void
      public void send_getNoteApplicationDataEntry(string authenticationToken, string guid, string key)
      #endif
      {
        oprot_.WriteMessageBegin(new TMessage("getNoteApplicationDataEntry", TMessageType.Call, seqid_));
        getNoteApplicationDataEntry_args args = new getNoteApplicationDataEntry_args();
        args.AuthenticationToken = authenticationToken;
        args.Guid = guid;
        args.Key = key;
        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_getNoteApplicationDataEntry ( AsyncCallback callback, object state, string authenticationToken, string guid, string key ) : IAsyncResult
NoteStore.Client