Evernote.EDAM.UserStore.UserStore.Client.recv_getPremiumInfo C# (CSharp) Method

recv_getPremiumInfo() public method

public recv_getPremiumInfo ( ) : PremiumInfo
return PremiumInfo
      public PremiumInfo recv_getPremiumInfo()
      {
        TMessage msg = iprot_.ReadMessageBegin();
        if (msg.Type == TMessageType.Exception) {
          TApplicationException x = TApplicationException.Read(iprot_);
          iprot_.ReadMessageEnd();
          throw x;
        }
        getPremiumInfo_result result = new getPremiumInfo_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;
        }
        throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "getPremiumInfo failed: unknown result");
      }