Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

LowerCaseStringConverter::ConvertFrom Method (ITypeDescriptorContext^, CultureInfo^, Object^)

 

Converts an object from its original value to a lowercase string based on the specified parameters.

Namespace:   System.Web.Configuration
Assembly:  System.Web (in System.Web.dll)

public:
virtual Object^ ConvertFrom(
	ITypeDescriptorContext^ ctx,
	CultureInfo^ ci,
	Object^ data
) override

Parameters

ctx
Type: System.ComponentModel::ITypeDescriptorContext^

An object that implements the ITypeDescriptorContext interface.

ci
Type: System.Globalization::CultureInfo^

An object that implements the CultureInfo class.

data
Type: System::Object^

The object to convert.

Return Value

Type: System::Object^

A lowercase string object.

This method uses an object that implements the 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 ITypeDescriptorContext is commonly used in type conversion. The ci parameter object provides the culture-related information. The data parameter 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.

The following example demonstrates how to use this method.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft