Server.Engines.Reports.PersistanceWriter.SetInt32 C# (CSharp) Method

SetInt32() public abstract method

public abstract SetInt32 ( string key, int value ) : void
key string
value int
return void
		public abstract void SetInt32( string key, int value );
		public abstract void SetBoolean( string key, bool value );

Usage Example

Exemplo n.º 1
0
		public override void SerializeAttributes( PersistanceWriter op )
		{
			base.SerializeAttributes( op );

			op.SetInt32( "t", m_Ticks );
			op.SetInt32( "r", (int) m_RenderMode );

			op.SetString( "x", m_xTitle );
			op.SetString( "y", m_yTitle );

			op.SetInt32( "s", m_FontSize );
			op.SetInt32( "i", m_Interval );
		}
All Usage Examples Of Server.Engines.Reports.PersistanceWriter::SetInt32