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

send_unsetResourceApplicationDataEntry() public method

public send_unsetResourceApplicationDataEntry ( string authenticationToken, string guid, string key ) : void
authenticationToken string
guid string
key string
return void
      public void send_unsetResourceApplicationDataEntry(string authenticationToken, string guid, string key)
      #endif
      {
        oprot_.WriteMessageBegin(new TMessage("unsetResourceApplicationDataEntry", TMessageType.Call, seqid_));
        unsetResourceApplicationDataEntry_args args = new unsetResourceApplicationDataEntry_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_unsetResourceApplicationDataEntry ( AsyncCallback callback, object state, string authenticationToken, string guid, string key ) : IAsyncResult
NoteStore.Client