Click or drag to resize

DataSetExtensionsSerializeToStream Method

Serializes a DataSet to a destination Stream.

Namespace: GSF.Data
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.181-beta
Syntax
public static void SerializeToStream(
	this DataSet source,
	Stream destination,
	bool assumeStringForUnknownTypes = true,
	bool useNullableDataTypes = true
)
View Source

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