Implement this interface to control how property values are serialized and deserialized.

Namespace: DotNetNuke.Entities.Modules.Settings
Assembly: DotNetNuke (in DotNetNuke.dll)

Syntax

C#
public interface ISettingsSerializer<T>
Visual Basic
Public Interface ISettingsSerializer(Of T)

Type Parameters

T
The type that will be serialized or deserialized.

Remarks

The ParameterAttributeBase serialize property will identify a serialization class to be used for serializing and deserializing a property to be stored in the settings table.

See Also