ConfigurationElement.OnDeserializeUnrecognizedAttribute Method
.NET Framework 4.6 and 4.5
Gets a value indicating whether an unknown attribute is encountered during deserialization.
Namespace: System.Configuration
Assembly: System.Configuration (in System.Configuration.dll)
protected virtual bool OnDeserializeUnrecognizedAttribute( string name, string value )
Parameters
- name
- Type: System.String
The name of the unrecognized attribute.
- value
- Type: System.String
The value of the unrecognized attribute.
Return Value
Type: System.Booleantrue when an unknown attribute is encountered while deserializing; otherwise, false.
The OnDeserializeUnrecognizedAttribute is invoked when an unknown attribute is encountered while deserializing the ConfigurationElement object.
Show: