Windows apps
Collapse the table of content
Expand the table of content
Information
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.

ConfigurationElement::OnDeserializeUnrecognizedElement Method (String^, XmlReader^)

 

Gets a value indicating whether an unknown element is encountered during deserialization.

Namespace:   System.Configuration
Assembly:  System.Configuration (in System.Configuration.dll)

protected:
virtual bool OnDeserializeUnrecognizedElement(
	String^ elementName,
	XmlReader^ reader
)

Parameters

elementName
Type: System::String^

The name of the unknown subelement.

reader
Type: System.Xml::XmlReader^

The XmlReader being used for deserialization.

Return Value

Type: System::Boolean

true when an unknown element is encountered while deserializing; otherwise, false.

Exception Condition
ConfigurationErrorsException

The element identified by elementName is locked.

- or -

One or more of the element's attributes is locked.

- or -

elementName is unrecognized, or the element has an unrecognized attribute.

- or -

The element has a Boolean attribute with an invalid value.

- or -

An attempt was made to deserialize a property more than once.

- or -

An attempt was made to deserialize a property that is not a valid member of the element.

- or -

The element cannot contain a CDATA or text element.

The OnDeserializeUnrecognizedElement is invoked when an unknown attribute is encountered while deserializing the ConfigurationElement object.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft