| LogLevelTypeConverterConvertTo Method (ITypeDescriptorContext, CultureInfo, Object, Type) |
Converts the given value object to the specified type, using the specified context and culture information.
Namespace:
NLog.Attributes
Assembly:
NLog (in NLog.dll) Version: 5.3.4+73d83d3161d31288ca5c554cc50d27b6bed5f28b
Syntax public override Object ConvertTo(
ITypeDescriptorContext context,
CultureInfo culture,
Object value,
Type destinationType
)
Public Overrides Function ConvertTo (
context As ITypeDescriptorContext,
culture As CultureInfo,
value As Object,
destinationType As Type
) As Object
Dim instance As LogLevelTypeConverter
Dim context As ITypeDescriptorContext
Dim culture As CultureInfo
Dim value As Object
Dim destinationType As Type
Dim returnValue As Object
returnValue = instance.ConvertTo(context,
culture, value, destinationType)
abstract ConvertTo :
context : ITypeDescriptorContext *
culture : CultureInfo *
value : Object *
destinationType : Type -> Object
override ConvertTo :
context : ITypeDescriptorContext *
culture : CultureInfo *
value : Object *
destinationType : Type -> Object
Parameters
- context
- Type: System.ComponentModelITypeDescriptorContext
An ITypeDescriptorContext that provides a format context. - culture
- Type: System.GlobalizationCultureInfo
A CultureInfo. If is passed, the current culture is assumed. - value
- Type: SystemObject
The Object to convert. - destinationType
- Type: SystemType
The Type to convert the value parameter to.
Return Value
Type:
ObjectAn
Object that represents the converted value.
Exceptions Exception | Condition |
---|
ArgumentNullException | The destinationType parameter is . |
NotSupportedException | The conversion cannot be performed. |
See Also