Click or drag to resize

SerializationSerializeT(T, SerializationFormat) Method

Serializes an Object.

Namespace: GSF
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.207-beta+1781b796b2aa7a54013a031eb432fe4ccee31867
Syntax
public static byte[] Serialize<T>(
	T serializableObject,
	SerializationFormat serializationFormat
)
View Source

Parameters

serializableObject  T
Object to be serialized.
serializationFormat  SerializationFormat
SerializationFormat in which the serializableObject is to be serialized.

Type Parameters

T
Type of the serializableObject.

Return Value

Byte
An Array of Byte of the serialized Object.
Exceptions
ExceptionCondition
ArgumentNullExceptionserializableObject is null.
NotSupportedExceptionSpecified serializationFormat is not supported.
See Also