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

send_setResourceApplicationDataEntry() public method

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