C# Class WebApplications.Utilities.Serialization.XmlFormatter.CustomSerializationEntry

The CustomSerializationEntry mimics the System.Runtime.Serialization.SerializationEntry class to make it possible to create our own entries. The class acts as a placeholder for a type, it's name and it's value. This class is used in the XmlFormatter class to serialize objects.
Mostra file Open project: webappsuk/CoreLibraries

Private Properties

Property Type Description

Public Methods

Method Description
CustomSerializationEntry ( [ name, [ objectType, bool isList, object value = null ) : System

A constructor to create a CustomSerializationEntry.

Method Details

CustomSerializationEntry() public method

A constructor to create a CustomSerializationEntry.
public CustomSerializationEntry ( [ name, [ objectType, bool isList, object value = null ) : System
name [ The name of the object.
objectType [ The of the object.
isList bool Indicates whether the object is a list type.
value object The value of the object.
return System