Table of Contents

Class IisHandler

Namespace
CENTREL.XIA.Configuration.Types
Assembly
CENTREL.XIA.Configuration.Types.dll

Represents a Microsoft IIS handler.

public class IisHandler : IisConfigurationElement, IComparable<IisHandler>
Inheritance
IisHandler
Implements
Inherited Members

Constructors

IisHandler()

Initializes a new instance of the CENTREL.XIA.Configuration.Types.IisHandler class.

public IisHandler()

Properties

Executable

Gets or sets the path to the executable.

public string Executable { get; set; }

Property Value

string

IsDisabled

Gets or sets whether the handler is disabled.

public BooleanOption IsDisabled { get; set; }

Property Value

BooleanOption

Modules

Gets or sets the module or modules assigned to the handler.

public string Modules { get; set; }

Property Value

string

Name

Gets or sets the name of the handler.

public string Name { get; set; }

Property Value

string

Path

Gets or sets the path.

public string Path { get; set; }

Property Value

string

RequiredAccess

Gets or sets the required access.

public IisHandlerRequiredAccess RequiredAccess { get; set; }

Property Value

IisHandlerRequiredAccess

ResourceType

Gets or sets the resource type.

public IisHandlerResourceType ResourceType { get; set; }

Property Value

IisHandlerResourceType

TypeName

Gets or sets the type name.

public string TypeName { get; set; }

Property Value

string

Verbs

Gets or sets the verbs that apply to the handler.

public string Verbs { get; set; }

Property Value

string

VerbsString

Gets the verbs that apply to the handler.

public string VerbsString { get; }

Property Value

string

Methods

CompareTo(IisHandler)

Compares two CENTREL.XIA.Configuration.Types.IisHandler objects to allow sorting by name.

public int CompareTo(IisHandler other)

Parameters

other IisHandler

The CENTREL.XIA.Configuration.Types.IisHandler to compare to.

Returns

int

The sort order of the two CENTREL.XIA.Configuration.Types.IisHandler objects.

ToString()

Returns the handler as a human readable string.

public override string ToString()

Returns

string

The handler as a human readable string.