当前位置:   article > 正文

C# 操作IIS_c#操作iis

c#操作iis
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Web.Administration;


namespace NetBrain.Utility
{
    public class IIS_Parser
    {
        public static string GetIISPoolEnabel32BitApp(string PoolName)
        {
            ServerManager manager = new ServerManager();
            ApplicationPool pool = manager.ApplicationPools[PoolName];
            if (pool != null)
            {
                return pool.Enable32BitAppOnWin64.ToString();
            }
            else
            {
                return "false";
            }
        }


        public static string GetIISPoolQueueLen(string PoolName)
        {
            ServerManager manager = ne
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/252236?site
推荐阅读
相关标签
  

闽ICP备14008679号