DataSetExtensionsSerializeToStream Method

Serializes a DataSet to a destination Stream.

Definition

Namespace: Gemstone.Data.DataSetExtensions
Assembly: Gemstone.Data (in Gemstone.Data.dll) Version: 1.0.177 -- Release Build+d96749616716c7e31d7afb14792fd635b01e16cd
public static void SerializeToStream(
	this DataSet source,
	Stream destination,
	bool assumeStringForUnknownTypes = true,
	bool useNullableDataTypes = true
)

Parameters

source  DataSet
DataSet to serialize.
destination  Stream
Stream to serialize DataSet on.
assumeStringForUnknownTypes  Boolean  (Optional)
Flag to determine if unknown column types should be serialized as strings.
useNullableDataTypes  Boolean  (Optional)
Flag to determine if extra information should be serialized to support null values.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type DataSet. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also