Exemplo n.º 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);
        }
Exemplo n.º 2
0
 internal WebApplicationTools(IISServerHandle handle)
 {
     this.handle = handle;
 }
Exemplo n.º 3
0
 internal ApplicationPoolTools(IISServerHandle handle)
 {
     this.handle = handle;
 }
Exemplo n.º 4
0
 internal WebSiteTools(IISServerHandle handle)
 {
     this.handle = handle;
 }