C# 클래스 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.
파일 보기 프로젝트 열기: webappsuk/CoreLibraries

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
CustomSerializationEntry ( [ name, [ objectType, bool isList, object value = null ) : System

A constructor to create a CustomSerializationEntry.

메소드 상세

CustomSerializationEntry() 공개 메소드

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.
리턴 System