代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Asp.Net
】
IIS应用程序池辅助类
作者:
Egbert
/ 发布于
2016/1/4
/
633
using System.Collections.Generic; using System.DirectoryServices; using System.Linq; using Microsoft.Web.Administration;//位于:C:\Windows\System32\inetsrv\Microsoft.Web.Administration.dll namespace Whir.Software.InteralServerManage.IISManager { /// <summary> /// IIS应用程序池辅助类 /// </summary> public class AppPoolService { protected static string Host = "localhost"; /// <summary> /// 取得所有应用程序池 /// </summary> /// <returns></returns> public static List<string> GetAppPools() { var appPools = new DirectoryEntry(string.Format("IIS://{0}/W3SVC/AppPools", Host)); return (from DirectoryEntry entry in appPools.Children select entry.Name).ToList(); } /// <summary> /// 取得单个应用程序池 /// </summary> /// <returns></returns> public static ApplicationPool GetAppPool(string appPoolName) { ApplicationPool app = null; var appPools = new DirectoryEntry(string.Format("IIS://{0}/W3SVC/AppPools", Host)); foreach (DirectoryEntry entry in appPools.Children) { if (entry.Name == appPoolName) { var manager = new ServerManager(); app = manager.ApplicationPools[appPoolName]; } } return app; } /// <summary> /// 判断程序池是否存在 /// </summary> /// <param name="appPoolName">程序池名称</param> /// <returns>true存在 false不存在</returns> public static bool IsAppPoolExsit(string appPoolName) { bool result = false; var appPools = new DirectoryEntry(string.Format("IIS://{0}/W3SVC/AppPools", Host)); foreach (DirectoryEntry entry in appPools.Children) { if (entry.Name.Equals(appPoolName)) { result = true; break; } } return result; } /// <summary> /// 删除指定程序池 /// </summary> /// <param name="appPoolName">程序池名称</param> /// <returns>true删除成功 false删除失败</returns> public static bool DeleteAppPool(string appPoolName) { bool result = false; var appPools = new DirectoryEntry(string.Format("IIS://{0}/W3SVC/AppPools", Host)); foreach (DirectoryEntry entry in appPools.Children) { if (entry.Name.Equals(appPoolName)) { try { entry.DeleteTree(); result = true; break; } catch { result = false; } } } return result; } /// <summary> /// 创建应用程序池 /// </summary> /// <param name="appPool"></param> /// <returns></returns> public static bool CreateAppPool(string appPool) { try { if (!IsAppPoolExsit(appPool)) { var appPools = new DirectoryEntry(string.Format("IIS://{0}/W3SVC/AppPools", Host)); DirectoryEntry entry = appPools.Children.Add(appPool, "IIsApplicationPool"); entry.CommitChanges(); return true; } } catch { return false; } return false; } /// <summary> /// 编辑应用程序池 /// </summary> /// <param name="application"></param> /// <returns></returns> public static bool EditAppPool(ApplicationPool application) { try { if (IsAppPoolExsit(application.Name)) { var manager = new ServerManager(); manager.ApplicationPools[application.Name].ManagedRuntimeVersion = application.ManagedRuntimeVersion; manager.ApplicationPools[application.Name].ManagedPipelineMode = application.ManagedPipelineMode; //托管模式Integrated为集成 Classic为经典 manager.CommitChanges(); return true; } } catch { return false; } return false; } } }
试试其它关键字
同语言下
.
gzip压缩
.
实现http多线程断点续传下载文件
.
实现多线程断点续传下载大文件
.
生成字符串的 CheckSum
.
根据 UserAgent 获取浏览器的类型和版本
.
根据 Agent 判断是否是智能手机
.
隐藏手机号中间四位为*方法
.
合并图片(二维码和其他图片合并)
.
ASP.NET CORE中判断是否移动端打开网页
.
ASP.NET(C#)实现页面计时(定时)自动跳转
可能有用的
.
gzip压缩
.
实现http多线程断点续传下载文件
.
实现多线程断点续传下载大文件
.
生成字符串的 CheckSum
.
根据 UserAgent 获取浏览器的类型和版本
.
根据 Agent 判断是否是智能手机
.
隐藏手机号中间四位为*方法
.
合并图片(二维码和其他图片合并)
.
ASP.NET CORE中判断是否移动端打开网页
.
ASP.NET(C#)实现页面计时(定时)自动跳转
Egbert
贡献的其它代码
(
20
)
.
删除服务器上文件
.
DbHelper-SQL数据库访问助手
.
SQL Server判断数据库、表、存储过程、函数是否存在
.
SQL 字符串去除空格函数
.
RegistryHelper-注册表辅助类
.
查询MySql数据库架构信息:数据库,表,表字段
.
HttpOperater-模拟HTTP操作类
.
设置文件夹用户权限
.
AppPoolService-IIS应用程序池辅助类
.
FileHelper-文件操作辅助类
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3