Include the Data property when serializing the class or generating the document.

Namespace:  BargeEx
Assembly:  BargeEx (in BargeEx.dll)
Version: 3.0.400.140 (3.0.400.140)

Syntax

C#
public virtual bool DataSpecified { get; set; }
Visual Basic (Declaration)
Public Overridable Property DataSpecified As Boolean
Visual C++
public:
virtual property bool DataSpecified {
	bool get ();
	void set (bool value);
}

Property Value

true if the element associated with the Data property will be included in the serialized class or generated document; false if it will not be included. The default value is false.

Remarks

Use DataSpecified to indicate if the element associated with the Data property will be included or excluded in the serialized class or generated document.

This property is automatically set to true when Data is set.

See Also