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.
ValueSerializer::ConvertFromString Method (String^, IValueSerializerContext^)
.NET Framework (current version)
When overridden in a derived class, converts a String to an instance of the type that the implementation of ValueSerializer supports.
Assembly: System.Xaml (in System.Xaml.dll)
public: virtual Object^ ConvertFromString( String^ value, IValueSerializerContext^ context )
Parameters
- value
-
Type:
System::String^
The string to convert.
- context
-
Type:
System.Windows.Markup::IValueSerializerContext^
Context information that is used for conversion.
Return Value
Type: System::Object^A new instance of the type that the implementation of ValueSerializer supports based on the supplied value.
| Exception | Condition |
|---|---|
| NotSupportedException | value cannot be converted. |
The base implementation always throws an exception.
Notes to Inheritors:
Avoid throwing exceptions from implementations. See Remarks in ValueSerializer.
.NET Framework
Available since 3.0
Available since 3.0
Show: