ProfilePropertySettingsCollection.OnDeserializeUnrecognizedElement Method (String, XmlReader)
.NET Framework (current version)
Handles the reading of unrecognized configuration elements from a configuration file and causes the configuration system to throw an exception if the element cannot be handled.
Assembly: System.Web (in System.Web.dll)
protected override bool OnDeserializeUnrecognizedElement( string elementName, XmlReader reader )
Parameters
- elementName
-
Type:
System.String
The name of the unrecognized element.
- reader
-
Type:
System.Xml.XmlReader
An input stream that reads XML from the configuration file.
Return Value
Type: System.Booleantrue if the unrecognized element was deserialized successfully; otherwise, false.
| Exception | Condition |
|---|---|
| ConfigurationErrorsException | elementName equals "clear" - or - elementName equals "group". |
This implementation of OnDeserializeUnrecognizedElement throws specialized errors if the element name is either "clear" or "group". After checking for these conditions, the method then explicitly calls its base implementation, the ConfigurationElementCollection.OnDeserializeUnrecognizedElement method.
.NET Framework
Available since 2.0
Available since 2.0
Show: