Share via


CustomHandlerData.OnDeserializeUnrecognizedAttribute Method

Retired Content

This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This page may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.

Called when an unknown attribute is encountered while deserializing the CustomHandlerData object.

Namespace:  Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration
Assembly:  Microsoft.Practices.EnterpriseLibrary.ExceptionHandling (in Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.dll)

Syntax

'Declaration
ProtectedOverridesFunctionOnDeserializeUnrecognizedAttribute ( _
    nameAs String, _
    valueAs String _
) As Boolean
protectedoverride bool OnDeserializeUnrecognizedAttribute(
    string name,
    string value
)
protected:
virtual bool OnDeserializeUnrecognizedAttribute(
    String^ name, 
    String^ value
) override
protectedoverridefunctionOnDeserializeUnrecognizedAttribute(
    name : String, 
    value : String
) : boolean

Parameters

  • name
    Type: System.String
    The name of the unrecognized attribute.
  • value
    Type: System.String
    The value of the unrecognized attribute.

Return Value

truetrue (True in Visual Basic) if the processing of the element should continue; otherwise, falsefalse (False in Visual Basic).

See Also

CustomHandlerData Class

Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration Namespace

Retired Content

This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This page may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.