C# Класс FuncTest.IIS.IisApplicationPool

The IIS web application.
Наследование: IDisposable
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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