[This is preliminary documentation and is subject to change.]

Semi type-safe delegate of the ConvertFrom(ITypeDescriptorContext, CultureInfo, Object) function

Namespace: Tools.ComponentModelT
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
protected delegate T dConvertFrom(
	ITypeDescriptorContext context,
	CultureInfo culture,
	Object value
)
Visual Basic
Protected Delegate Function dConvertFrom ( _
	context As ITypeDescriptorContext, _
	culture As CultureInfo, _
	value As Object _
) As T
Visual C++
protected delegate T dConvertFrom(
	ITypeDescriptorContext^ context, 
	CultureInfo^ culture, 
	Object^ value
)
F#
type dConvertFrom = 
    delegate of 
        context:ITypeDescriptorContext * 
        culture:CultureInfo * 
        value:Object -> 'T
JScript
JScript does not support delegates.

Parameters

context
Type: System.ComponentModel..::..ITypeDescriptorContext
An ITypeDescriptorContext that provides a format context.
culture
Type: System.Globalization..::..CultureInfo
A CultureInfo. If null is passed, the current culture is assumed.
value
Type: System..::..Object
The Object to convert.

Return Value

Converted value

See Also