Class IisConnectionString
- Namespace
- CENTREL.XIA.Configuration.Types
- Assembly
- CENTREL.XIA.Configuration.Types.dll
Represents a Microsoft IIS connection string.
public class IisConnectionString : IisConfigurationElement, IComparable<IisConnectionString>
- Inheritance
-
IisConnectionString
- Implements
- Inherited Members
Constructors
IisConnectionString()
Initializes a new instance of the CENTREL.XIA.Configuration.Types.IisConnectionString class.
public IisConnectionString()
Properties
Name
Gets or sets the name of the connection string.
public string Name { get; set; }
Property Value
ProviderName
Gets or sets the provider name.
public string ProviderName { get; set; }
Property Value
Value
Gets or sets value of the connection string.
public string Value { get; set; }
Property Value
Methods
CompareTo(IisConnectionString)
Compares two CENTREL.XIA.Configuration.Types.IisConnectionString objects to allow sorting alphabetically by name.
public int CompareTo(IisConnectionString other)
Parameters
other
IisConnectionStringThe CENTREL.XIA.Configuration.Types.IisConnectionString to compare to.
Returns
- int
The sort order of the two CENTREL.XIA.Configuration.Types.IisConnectionString objects.
ToString()
Returns the IIS connection string as a human readable string.
public override string ToString()
Returns
- string
The IIS connection string as a human readable string.