예제 #1
0
파일: IISTools.cs 프로젝트: wlclass/Photon
        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;
 }