New to Telerik UI for WPFStart a free 30-day trial

ISerializer

Interface

Represents a persistence rawDataSerializer.

Definition

Namespace:Telerik.Windows.Persistence.Serialization

Assembly:Telerik.Windows.PersistenceFramework.dll

Syntax:

C#
public interface ISerializer

Derived Classes: SerializerUISerializer

Methods

Serializes a specific object.

C#
Stream Serialize(object obj)
Parameters:objobject

The object to serialize.

Returns:

Stream

Returns a stream with the serialization data.

Serializes the specified objects.

C#
Stream Serialize(params object[] obj)
Parameters:objobject[]

The objects to be serialized.

Returns:

Stream

Returns a stream with the serialization data.