XdmSerializationSettings.UndeclarePrefixes PropertyXdmSerializationSettings.UndeclarePrefixes PropertyXdmSerializationSettings::UndeclarePrefixes Property

Gets a value indicating whether serializer should undeclare namespaces.

Syntax

Public Property UndeclarePrefixes As Boolean
        Get
        Set(ByVal value As Boolean)
public bool UndeclarePrefixes { get; set; }
public:
property bool UndeclarePrefixes {
    bool get();
    void set(bool value);
}
 

Property Value

Type: System.BooleanSystem.BooleanSystem::Boolean

trueTruetrue if the serializer should undeclare namespaces; otherwise falseFalsefalse.

Remarks

This property corresponds to the undeclare-prefixes serialization parameter.

If UndeclarePrefixesUndeclarePrefixesUndeclarePrefixes is set to trueTruetrue, then if an element is serialized whose parent has namespaces in scope that are not in scope in the element (this can occur when the child element has been copied from elsewhere), then these namespaces are undeclared, by setting them to "". In HTML and Text output modes this parameter is ignored.