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

recv_untagAll() public method

public recv_untagAll ( ) : void
return void
      public void recv_untagAll()
      {
        TMessage msg = iprot_.ReadMessageBegin();
        if (msg.Type == TMessageType.Exception) {
          TApplicationException x = TApplicationException.Read(iprot_);
          iprot_.ReadMessageEnd();
          throw x;
        }
        untagAll_result result = new untagAll_result();
        result.Read(iprot_);
        iprot_.ReadMessageEnd();
        if (result.__isset.userException) {
          throw result.UserException;
        }
        if (result.__isset.systemException) {
          throw result.SystemException;
        }
        if (result.__isset.notFoundException) {
          throw result.NotFoundException;
        }
        return;
      }
NoteStore.Client