This documentation is archived and is not being maintained.
DataSet. ShouldSerializeRelations Method ()
.NET Framework (current version)
Gets a value indicating whether Relations property should be persisted.
Namespace:
System.Data Assembly:
System.Data (in System.Data.dll)
protected virtual bool ShouldSerializeRelations()
Return Value
Type:
System.Boolean true if the property value has been changed from its default; otherwise false .
You typically use this method if you are either creating a designer for the DataSet , or creating your own control incorporating the DataSet .
The following examples show a class derived from the DataSet class. The Reset and ShouldSerializeRelations methods are invoked from within functions in the derived class.
public class DerivedDataSet:System.Data.DataSet
{
public void ResetDataSetRelations()
{
// Check the ShouldSerializeRelations methods
// before invoking Reset.
if (!this .ShouldSerializeRelations())
{
this .Reset();
}
}
}
.NET Framework
Available since 1.1
Return to top