C# 클래스 FuncTest.IIS.IisApplicationPool

The IIS web application.
상속: IDisposable
파일 보기 프로젝트 열기: Microsoft/ApplicationInsights-dotnet-server 1 사용 예제들

공개 메소드들

메소드 설명
AddToIisIfNotExists ( ) : void

Adds pool to IIS if not exists.

Dispose ( ) : void

Disposes the instance of IIS Application Pool and frees the underlying resources, can reduce the amount of the memory leak in Server Manager

IisApplicationPool ( ApplicationPool pool ) : System

Initializes a new instance of the IisApplicationPool class.

IisApplicationPool ( string poolName, string managedRuntimeVersion = DefaultManagedRuntimeVersion, string pipeline = DefaultPipeline, bool enable32BitAppOnWin64 = false ) : System

Initializes a new instance of the IisApplicationPool class.

Recycle ( ) : void

Recycles application pool in IIS.

Remove ( ) : void

Removes the pool from IIS

메소드 상세

AddToIisIfNotExists() 공개 메소드

Adds pool to IIS if not exists.
public AddToIisIfNotExists ( ) : void
리턴 void

Dispose() 공개 메소드

Disposes the instance of IIS Application Pool and frees the underlying resources, can reduce the amount of the memory leak in Server Manager
public Dispose ( ) : void
리턴 void

IisApplicationPool() 공개 메소드

Initializes a new instance of the IisApplicationPool class.
public IisApplicationPool ( ApplicationPool pool ) : System
pool Microsoft.Web.Administration.ApplicationPool /// The pool. ///
리턴 System

IisApplicationPool() 공개 메소드

Initializes a new instance of the IisApplicationPool class.
public IisApplicationPool ( string poolName, string managedRuntimeVersion = DefaultManagedRuntimeVersion, string pipeline = DefaultPipeline, bool enable32BitAppOnWin64 = false ) : System
poolName string /// The pool name. ///
managedRuntimeVersion string /// The managed Runtime Version. ///
pipeline string /// The pipeline. ///
enable32BitAppOnWin64 bool determines if enable32BitAppOnWin64 is required for the pool
리턴 System

Recycle() 공개 메소드

Recycles application pool in IIS.
public Recycle ( ) : void
리턴 void

Remove() 공개 메소드

Removes the pool from IIS
public Remove ( ) : void
리턴 void