System.Web.Configuration.LowerCaseStringConverter.ConvertTo Method

Converts an object to a lowercase string based on the specified parameters.

Syntax

public override object ConvertTo (System.ComponentModel.ITypeDescriptorContext ctx, System.Globalization.CultureInfo ci, object value, Type type)

Parameters

ctx
An object that implements the System.ComponentModel.ITypeDescriptorContext interface.
ci
An object that implements the System.Globalization.CultureInfo class.
value
The object to convert.
type
The type of object to convert.

Returns

A lowercase string object.

Remarks

This method uses an object that implements the System.ComponentModel.ITypeDescriptorContext interface as the ctx parameter. This interface provides contextual information about a component. Typically, this interface is used at design time to provide information about a design-time container. The System.ComponentModel.ITypeDescriptorContext is commonly used in type conversion. The ci parameter object provides the culture-related information. The value object acts as both the object to convert and the resulting object once the method is complete. Override this method in a derived class if custom behavior is required.

Requirements

Namespace: System.Web.Configuration
Assembly: System.Web (in System.Web.dll)
Assembly Versions: 2.0.0.0
Since: .NET 2.0