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

recv_updateLinkedNotebook() public method

public recv_updateLinkedNotebook ( ) : int
return int
      public int recv_updateLinkedNotebook()
      {
        TMessage msg = iprot_.ReadMessageBegin();
        if (msg.Type == TMessageType.Exception) {
          TApplicationException x = TApplicationException.Read(iprot_);
          iprot_.ReadMessageEnd();
          throw x;
        }
        updateLinkedNotebook_result result = new updateLinkedNotebook_result();
        result.Read(iprot_);
        iprot_.ReadMessageEnd();
        if (result.__isset.success) {
          return result.Success;
        }
        if (result.__isset.userException) {
          throw result.UserException;
        }
        if (result.__isset.notFoundException) {
          throw result.NotFoundException;
        }
        if (result.__isset.systemException) {
          throw result.SystemException;
        }
        throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "updateLinkedNotebook failed: unknown result");
      }
NoteStore.Client