DataSetExtensionsSerializeToStream Method

Serializes a DataSet to a destination Stream.

Definition

Namespace: Gemstone.Data.DataSetExtensions
Assembly: Gemstone.Data (in Gemstone.Data.dll) Version: 1.0.178 -- Release Build+ff8c4ec86648cef21d788c1ae4346eaec7de7ef3
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