NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

TypeConverter.ConvertFrom (Object, Object[])

Converts the given value to the converter's native type.

[Visual Basic]
Overloads Public Function ConvertFrom( _
   ByVal value As Object, _
   ByVal arguments() As Object _
) As Object
[C#]
public object ConvertFrom(
   object value,
   object[] arguments
);
[C++]
public: Object* ConvertFrom(
   Object* value,
   Object* arguments[]
);
[JScript]
public function ConvertFrom(
   value : Object,
   arguments : Object[]
) : Object;

Parameters

value
The object to convert.
arguments
An optional array of arguments to use when doing the conversion. The number and content of these arguments is dependent on the implementer of the value formatter.

Return Value

The converted object.

Exceptions

Exception Type Condition
GetConvertFromException(System.Object) The conversion could not be performed.

See Also

TypeConverter Class | TypeConverter Members | System.ComponentModel Namespace | TypeConverter.ConvertFrom Overload List