Class XhtmlStringConverter
Type converter class for Xhtml
Inheritance
Namespace: EPiServer.Core
Assembly: EPiServer.dll
Version: 12.0.3Syntax
public class XhtmlStringConverter : TypeConverter
Constructors
XhtmlStringConverter()
Declaration
public XhtmlStringConverter()
Methods
CanConvertFrom(ITypeDescriptorContext, Type)
Returns whether this converter can convert an object of the given type to the type of this converter, using the specified context.
Declaration
public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType)
Parameters
Type | Name | Description |
---|---|---|
System. |
context | An System. |
System. |
sourceType | A System. |
Returns
Type | Description |
---|---|
System. |
true if this converter can perform the conversion; otherwise, false. |
CanConvertTo(ITypeDescriptorContext, Type)
Returns whether this converter can convert the object to the specified type, using the specified context.
Declaration
public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType)
Parameters
Type | Name | Description |
---|---|---|
System. |
context | An System. |
System. |
destinationType | A System. |
Returns
Type | Description |
---|---|
System. |
true if this converter can perform the conversion; otherwise, false. |
ConvertFrom(ITypeDescriptorContext, CultureInfo, Object)
Converts the given object to the type of this converter, using the specified context and culture information.
Declaration
public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
Parameters
Type | Name | Description |
---|---|---|
System. |
context | An System. |
System. |
culture | The System. |
System. |
value | The System. |
Returns
Type | Description |
---|---|
System. |
An System. |
Exceptions
Type | Condition |
---|---|
System. |
The conversion cannot be performed. |
ConvertTo(ITypeDescriptorContext, CultureInfo, Object, Type)
Converts the given value object to the specified type, using the specified context and culture information.
Declaration
public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
Parameters
Type | Name | Description |
---|---|---|
System. |
context | An System. |
System. |
culture | A System. |
System. |
value | The System. |
System. |
destinationType | The System. |
Returns
Type | Description |
---|---|
System. |
An System. |