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

recv_getPublicNotebook() public method

public recv_getPublicNotebook ( ) : Evernote.EDAM.Type.Notebook
return Evernote.EDAM.Type.Notebook
      public Evernote.EDAM.Type.Notebook recv_getPublicNotebook()
      {
        TMessage msg = iprot_.ReadMessageBegin();
        if (msg.Type == TMessageType.Exception) {
          TApplicationException x = TApplicationException.Read(iprot_);
          iprot_.ReadMessageEnd();
          throw x;
        }
        getPublicNotebook_result result = new getPublicNotebook_result();
        result.Read(iprot_);
        iprot_.ReadMessageEnd();
        if (result.__isset.success) {
          return result.Success;
        }
        if (result.__isset.systemException) {
          throw result.SystemException;
        }
        if (result.__isset.notFoundException) {
          throw result.NotFoundException;
        }
        throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "getPublicNotebook failed: unknown result");
      }
NoteStore.Client