Axiom.Core.TimingMeter.TimingMeter C# (CSharp) Method

TimingMeter() private method

private TimingMeter ( string title, string category, short meterId ) : System
title string
category string
meterId short
return System
		internal TimingMeter( string title, string category, short meterId )
		{
			this.title = title;
			this.category = category;
			this.meterId = meterId;
			this.enabled = true;
			this.accumulate = false;
		}