LiquidTechnologies.XmlObjects Namespace / LxSerializerErrorHandler Delegate
The error message describing the issue
The severity of the error
The error code providing detail about the issue
The object the data is being serialized (a Liquid XML Objects generated class)

In This Topic
    LxSerializerErrorHandler Delegate
    In This Topic
    A callback error handler to deal with errors that occur during the serialization of Liquid XML Objects attributed class to an XML document.
    Syntax
    'Declaration
     
    
    Public Delegate Sub LxSerializerErrorHandler( _
       ByVal msg As System.String, _
       ByVal severity As LxErrorSeverity, _
       ByVal errorCode As LxErrorCode, _
       ByVal targetObject As System.Object _
    ) 
    public delegate void LxSerializerErrorHandler( 
       System.string msg,
       LxErrorSeverity severity,
       LxErrorCode errorCode,
       System.object targetObject
    )

    Parameters

    msg
    The error message describing the issue
    severity
    The severity of the error
    errorCode
    The error code providing detail about the issue
    targetObject
    The object the data is being serialized (a Liquid XML Objects generated class)
    Remarks
    The handler either choose to ignore the error or throw an exception to halt the de-serialization process.
    Requirements

    Target Platforms: Windows 10, Windows 8, Windows 7, Windows Vista, Windows Server 2016, Windows Server 2012, Windows Server 2008. Please ensure you have the latest Service Pack for your operating system installed.

    See Also