C# Class IrcShark.Extensions.ExtensionInfo

Afficher le fichier Open project: hapm/IrcShark Class Usage Examples

Méthodes publiques

Méthode 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 méthode

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

CompatibleWith() public méthode

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

ExtensionInfo() public méthode

Initializes a new instance of the ExtensionInfo class.
public ExtensionInfo ( ) : System
Résultat System

ExtensionInfo() public méthode

public ExtensionInfo ( ExtensionInfo baseInfo ) : System
baseInfo ExtensionInfo
Résultat System

ExtensionInfo() public méthode

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

GetSchema() public méthode

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

ReadXml() public méthode

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

WriteXml() public méthode

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