XdmSerializationSettings.Standalone PropertyXdmSerializationSettings.Standalone PropertyXdmSerializationSettings::Standalone Property

Gets or sets a value indicating whether the XML declaration must contain a standalone document declaration.

This property corresponds to the standalone serialization parameter.

If the standalone parameter has the value YesYesYes or the value NoNoNo, the XML declaration includes a standalone document declaration with the same value as the value of the standalone parameter. If the standalone parameter has the value OmitOmitOmit, the XML declaration will not include a standalone document declaration. In HTML and Text output modes this parameter is ignored.

Syntax

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

Property Value

Type: XmlPrime.Serialization.StandaloneXmlPrime.Serialization.StandaloneXmlPrime.Serialization::Standalone

trueTruetrue if the XML declaration must contain a standalone document declaration; otherwise falseFalsefalse.