//一下方法获取到了Response对象后获取他的html内容 就是:<div id=mbUsg>15224</div><div id=dspMbUsg>14.87 KB</div>
        private string GetMailboxUsageString() {
            string url = Config.ExchangeServerPath.Replace("/exchange/", "/owa/") + "ev.owa?oeh=1&ns=Tree&ev=GetMailboxUsage";
            WebResponse ret = HttpCallGetMailboxUsage(url);
            Stream stream = ret.GetResponseStream();
            StreamReader sr = new StreamReader(stream, Encoding.GetEncoding("UTF-8"));
            string htmlstr = sr.ReadToEnd();
            return htmlstr;
        }

        /// <summary>
        /// 获取用户已经使用的容量
        /// </summary>
        /// <returns>返回已使用容量的byte数 /1024 单位为kb  再/1024 单位为 MB</returns>
        public int GetMailboxUsage() {
            string usageString = GetMailboxUsageString();
            Match mc = Regex.Match(usageString, @"^<div id=mbUsg>([\d]+)</div><div id=dspMbUsg>([\d|\w|\W]+)</div>$");
            return Convert.ToInt32(mc.Groups[1].Value);
        }

        /// <summary>
        /// 获取用户已经使用的容量
        /// </summary>
        /// <returns>返回已使用容量的原始文本</returns>
        public string GetMailboxUsageSourceString() {
            string usageString = GetMailboxUsageString();
            Match mc = Regex.Match(usageString, @"^<div id=mbUsg>([\d]+)</div><div id=dspMbUsg>([\d|\w|\W]+)</div>$");
            return mc.Groups[0].Value;
        }

        /// <summary>
        /// 获取用户已经使用的容量
        /// </summary>
        /// <returns>返回已使用容量的显示文本</returns>
        public string GetMailboxUsageDisplayString() {
            string usageString = GetMailboxUsageString();
            Match mc = Regex.Match(usageString, @"^<div id=mbUsg>([\d]+)</div><div id=dspMbUsg>([\d|\w|\W]+)</div>$");
            return mc.Groups[2].Value;
        }

相关文章:

  • 2022-12-23
  • 2021-11-30
  • 2021-09-09
  • 2022-12-23
  • 2021-04-18
  • 2021-12-26
  • 2021-04-22
猜你喜欢
  • 2022-02-08
  • 2021-08-09
  • 2022-12-23
  • 2021-07-23
  • 2021-04-30
  • 2021-06-21
相关资源
相似解决方案