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

send_untagAll() public method

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