C# 클래스 IrcShark.Extensions.ExtensionInfo

파일 보기 프로젝트 열기: hapm/IrcShark 1 사용 예제들

공개 메소드들

메소드 설명
CompareTo ( ExtensionInfo info ) : bool

Compares this ExtensionInfo with another one.

CompatibleWith ( ExtensionInfo info ) : bool

Checks if the current ExtensionInfo is compatible to the given one.

ExtensionInfo ( ) : System

Initializes a new instance of the ExtensionInfo class.

ExtensionInfo ( ExtensionInfo baseInfo ) : System
ExtensionInfo ( Type extType ) : System

Initializes a new instance of the ExtensionInfo class.

GetSchema ( ) : XmlSchema

Returns the schema for the xml representation of an ExtensionInfo.

ReadXml ( System reader ) : void

Reads all data about an ExtensionInfo from the given XmlReader.

WriteXml ( System writer ) : void

Writes the current ExtensionInfo instance to the given XmlWriter.

메소드 상세

CompareTo() 공개 메소드

Compares this ExtensionInfo with another one.
public CompareTo ( ExtensionInfo info ) : bool
info ExtensionInfo The ExtensionInfo to compare with.
리턴 bool

CompatibleWith() 공개 메소드

Checks if the current ExtensionInfo is compatible to the given one.
public CompatibleWith ( ExtensionInfo info ) : bool
info ExtensionInfo /// The ExtensionInfo to check for compatiblity. ///
리턴 bool

ExtensionInfo() 공개 메소드

Initializes a new instance of the ExtensionInfo class.
public ExtensionInfo ( ) : System
리턴 System

ExtensionInfo() 공개 메소드

public ExtensionInfo ( ExtensionInfo baseInfo ) : System
baseInfo ExtensionInfo
리턴 System

ExtensionInfo() 공개 메소드

Initializes a new instance of the ExtensionInfo class.
public ExtensionInfo ( Type extType ) : System
extType System.Type The type to create the ExtensionInfo from.
리턴 System

GetSchema() 공개 메소드

Returns the schema for the xml representation of an ExtensionInfo.
public GetSchema ( ) : XmlSchema
리턴 XmlSchema

ReadXml() 공개 메소드

Reads all data about an ExtensionInfo from the given XmlReader.
public ReadXml ( System reader ) : void
reader System /// The to read the data from. ///
리턴 void

WriteXml() 공개 메소드

Writes the current ExtensionInfo instance to the given XmlWriter.
public WriteXml ( System writer ) : void
writer System /// The XmlWriter to write to . ///
리턴 void