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
IsDisabled
Gets or sets whether the handler is disabled.
public BooleanOption IsDisabled { get; set; }
Property Value
Modules
Gets or sets the module or modules assigned to the handler.
public string Modules { get; set; }
Property Value
Name
Gets or sets the name of the handler.
public string Name { get; set; }
Property Value
Path
Gets or sets the path.
public string Path { get; set; }
Property Value
RequiredAccess
Gets or sets the required access.
public IisHandlerRequiredAccess RequiredAccess { get; set; }
Property Value
ResourceType
Gets or sets the resource type.
public IisHandlerResourceType ResourceType { get; set; }
Property Value
TypeName
Gets or sets the type name.
public string TypeName { get; set; }
Property Value
Verbs
Gets or sets the verbs that apply to the handler.
public string Verbs { get; set; }
Property Value
VerbsString
Gets the verbs that apply to the handler.
public string VerbsString { get; }
Property Value
Methods
CompareTo(IisHandler)
Compares two CENTREL.XIA.Configuration.Types.IisHandler objects to allow sorting by name.
public int CompareTo(IisHandler other)
Parameters
other
IisHandlerThe 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.