C# 클래스 SiteStatus.Component

파일 보기 프로젝트 열기: iinteractive/site-status 1 사용 예제들

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
DeserializeFrom ( Stream stream ) : Component

Utility method for deserializing a component.

DeserializeFrom ( TextReader reader ) : Component

Utility method for deserializing a component.

DeserializeFrom ( XmlReader reader ) : Component

Utility method for deserializing a component.

SerializeTo ( Stream stream ) : void

Utility method for serializing the component.

SerializeTo ( TextWriter writer ) : void

Utility method for serializing the component.

SerializeTo ( XmlWriter writer ) : void

Utility method for serializing the component.

메소드 상세

DeserializeFrom() 공개 정적인 메소드

Utility method for deserializing a component.
public static DeserializeFrom ( Stream stream ) : Component
stream System.IO.Stream The stream to read from.
리턴 Component

DeserializeFrom() 공개 정적인 메소드

Utility method for deserializing a component.
public static DeserializeFrom ( TextReader reader ) : Component
reader System.IO.TextReader The text reader to read from.
리턴 Component

DeserializeFrom() 공개 정적인 메소드

Utility method for deserializing a component.
public static DeserializeFrom ( XmlReader reader ) : Component
reader XmlReader The xml reader to read from.
리턴 Component

SerializeTo() 공개 메소드

Utility method for serializing the component.
public SerializeTo ( Stream stream ) : void
stream System.IO.Stream The stream to write the component to.
리턴 void

SerializeTo() 공개 메소드

Utility method for serializing the component.
public SerializeTo ( TextWriter writer ) : void
writer System.IO.TextWriter The text writer to write the component to.
리턴 void

SerializeTo() 공개 메소드

Utility method for serializing the component.
public SerializeTo ( XmlWriter writer ) : void
writer System.Xml.XmlWriter The xml writer to write the component to.
리턴 void