Server.Accounting.AccountComment.AccountComment C# (CSharp) Méthode

AccountComment() public méthode

Deserializes an AccountComment instance from an xml element.
public AccountComment ( XmlElement node ) : System
node System.Xml.XmlElement The XmlElement instance from which to deserialize.
Résultat System
		public AccountComment( XmlElement node )
		{
			m_AddedBy = Utility.GetAttribute( node, "addedBy", "empty" );
			m_LastModified = Utility.GetXMLDateTime( Utility.GetAttribute( node, "lastModified" ), DateTime.Now );
			m_Content = Utility.GetText( node, "" );
		}

Same methods

AccountComment::AccountComment ( string addedBy, string content ) : System