XmlAttribute.Specified Property  
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a value indicating whether the attribute value was explicitly set.
public:
 virtual property bool Specified { bool get(); };public virtual bool Specified { get; }member this.Specified : boolPublic Overridable ReadOnly Property Specified As BooleanProperty Value
true if this attribute was explicitly given a value in the original instance document; otherwise, false. A value of false indicates that the value of the attribute came from the DTD.
Remarks
The implementation is in charge of this property, not the user. If the user changes the value of the attribute (even if it ends up having the same value as the default/fixed value), then the specified flag is automatically flipped to true. To re-specify the attribute as the default/fixed value from the DTD, the user must delete the attribute. The implementation then makes a new attribute available with specified set to false and the default/fixed value (if one exists).
In summary:
- If the attribute has an assigned value in the document, - Specifiedis- true, and the value is the assigned value.
- If the attribute has no assigned value in the document and has a default/fixed value in the DTD, - Specifiedis- false, and the value is the default/fixed value in the DTD.
- Otherwise, the attribute does not appear in the structure model of the document.