C# Class IrcShark.Extensions.ExtensionInfo

Datei anzeigen Open project: hapm/IrcShark Class Usage Examples

Public Methods

Method Description
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.

Method Details

CompareTo() public method

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

CompatibleWith() public method

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

ExtensionInfo() public method

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

ExtensionInfo() public method

public ExtensionInfo ( ExtensionInfo baseInfo ) : System
baseInfo ExtensionInfo
return System

ExtensionInfo() public method

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

GetSchema() public method

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

ReadXml() public method

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

WriteXml() public method

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