C# Class Server.Accounting.AccountComment

Mostra file Open project: Grimoric/RunUO.T2A

Public Methods

Method Description
AccountComment ( XmlElement node ) : System

Deserializes an AccountComment instance from an xml element.

AccountComment ( string addedBy, string content ) : System

Constructs a new AccountComment instance.

Save ( XmlTextWriter xml ) : void

Serializes this AccountComment instance to an XmlTextWriter.

Method Details

AccountComment() public method

Deserializes an AccountComment instance from an xml element.
public AccountComment ( XmlElement node ) : System
node System.Xml.XmlElement The XmlElement instance from which to deserialize.
return System

AccountComment() public method

Constructs a new AccountComment instance.
public AccountComment ( string addedBy, string content ) : System
addedBy string Initial AddedBy value.
content string Initial Content value.
return System

Save() public method

Serializes this AccountComment instance to an XmlTextWriter.
public Save ( XmlTextWriter xml ) : void
xml System.Xml.XmlTextWriter The XmlTextWriter instance from which to serialize.
return void