RasDeviceTypeConverter.ConvertFrom Method (ITypeDescriptorContext, CultureInfo, Object)

DotRas SDK

Collapse image Expand Image Copy image CopyHover image
Converts the given value to the type of this converter.

Namespace: DotRas
Assembly: DotRas (in DotRas.dll) Version: 1.3.5166.33435 (1.3.0.0)

Syntax

C#
public override Object ConvertFrom(
	ITypeDescriptorContext context,
	CultureInfo culture,
	Object value
)
Visual Basic
Public Overrides Function ConvertFrom ( 
	context As ITypeDescriptorContext,
	culture As CultureInfo,
	value As Object
) As Object
Visual C++
public:
virtual Object^ ConvertFrom(
	ITypeDescriptorContext^ context, 
	CultureInfo^ culture, 
	Object^ value
) override
F#
abstract ConvertFrom : 
        context : ITypeDescriptorContext * 
        culture : CultureInfo * 
        value : Object -> Object 
override ConvertFrom : 
        context : ITypeDescriptorContext * 
        culture : CultureInfo * 
        value : Object -> Object 

Parameters

context
Type: System.ComponentModel..::..ITypeDescriptorContext
An ITypeDescriptorContext that provides a format context.
culture
Type: System.Globalization..::..CultureInfo
The CultureInfo to use as the current culture.
value
Type: System..::..Object
The object to convert.

Return Value

Type: Object
An object that represents the converted value.

See Also