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

recv_listTagsByNotebook() public method

public recv_listTagsByNotebook ( ) : List
return List
      public List<Evernote.EDAM.Type.Tag> recv_listTagsByNotebook()
      {
        TMessage msg = iprot_.ReadMessageBegin();
        if (msg.Type == TMessageType.Exception) {
          TApplicationException x = TApplicationException.Read(iprot_);
          iprot_.ReadMessageEnd();
          throw x;
        }
        listTagsByNotebook_result result = new listTagsByNotebook_result();
        result.Read(iprot_);
        iprot_.ReadMessageEnd();
        if (result.__isset.success) {
          return result.Success;
        }
        if (result.__isset.userException) {
          throw result.UserException;
        }
        if (result.__isset.systemException) {
          throw result.SystemException;
        }
        if (result.__isset.notFoundException) {
          throw result.NotFoundException;
        }
        throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "listTagsByNotebook failed: unknown result");
      }
NoteStore.Client