資源簡(jiǎn)介
這個(gè)類是靜態(tài)類。用來(lái)實(shí)現(xiàn)管理IIS的基本操作。
代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.Text;
using?System.DirectoryServices;
using?System.Text.Regularexpressions;
using?System.Collections;
namespace?BullSofts.Core.Common
{
???///?
????///?這個(gè)類是靜態(tài)類。用來(lái)實(shí)現(xiàn)管理IIS的基本操作。
????///?
????public?class?IISManager
????{
????????public?static?DirectoryEntry?GetDirectoryEntry(string?path)?
????????{
????????????DirectoryEntry?d?=?new?DirectoryEntry(path);
????????????return?d;
????????????DirectorySearcher?s?=?new?DirectorySearcher(path);
????????????s.Filter?=?path;
????????????return?s.FindOne().GetDirectoryEntry();
????????}
????????#region?UserNamePasswordHostName的定義
????????public?static?string?HostName
????????{
????????????get
????????????{
????????????????return?hostName;
???
評(píng)論
共有 條評(píng)論