Server.Items.BaseBook.AddNameProperty C# (CSharp) Method

AddNameProperty() public method

public AddNameProperty ( ObjectPropertyList list ) : void
list Server.ObjectPropertyList
return void
		public override void AddNameProperty( ObjectPropertyList list )
		{
			if ( m_Title != null && m_Title.Length > 0 )
				list.Add( m_Title );
			else
				base.AddNameProperty( list );
		}