示例#1
0
        public IISTools(IDomainContext context, string serverName = "localhost")
        {
            handle = new IISServerHandle(context, serverName);

            ApplicationPool = new ApplicationPoolTools(handle);
            WebSite         = new WebSiteTools(handle);
            WebApplication  = new WebApplicationTools(handle);
        }
示例#2
0
 internal WebApplicationTools(IISServerHandle handle)
 {
     this.handle = handle;
 }
示例#3
0
 internal ApplicationPoolTools(IISServerHandle handle)
 {
     this.handle = handle;
 }
示例#4
0
 internal WebSiteTools(IISServerHandle handle)
 {
     this.handle = handle;
 }