C# 클래스 Mueller.Wddx.WddxSerializer

This class is the main entry point for serializing any object into WDDX.
파일 보기 프로젝트 열기: Bilal-S/WDDX.net

공개 메소드들

메소드 설명
Serialize ( object obj ) : string

Serializes an object to a string.

Serialize ( XmlWriter output, object obj ) : void

Serializes an object to a pre-existing XmlWriter object.

The XmlWriter should be pre-initialized, and can be pointed at many things: a string, a file, a network stream, the ASP.NET Response stream, etc.

비공개 메소드들

메소드 설명
WritePacketFooter ( XmlWriter output ) : void
WritePacketHeader ( XmlWriter output ) : void

메소드 상세

Serialize() 공개 메소드

Serializes an object to a string.
public Serialize ( object obj ) : string
obj object The object to be serialized.
리턴 string

Serialize() 공개 메소드

Serializes an object to a pre-existing XmlWriter object.
The XmlWriter should be pre-initialized, and can be pointed at many things: a string, a file, a network stream, the ASP.NET Response stream, etc.
public Serialize ( XmlWriter output, object obj ) : void
output System.Xml.XmlWriter A pre-initialized object.
obj object The object to be serialized.
리턴 void