Aura.Channel.Scripting.Scripts.GameEventScript.IsActiveTime C# (CSharp) Метод

IsActiveTime() публичный Метод

Returns true if the event is supposed to be active at the given time, based on its activation spans.
public IsActiveTime ( System.DateTime time ) : bool
time System.DateTime
Результат bool
		public bool IsActiveTime(DateTime time)
		{
			lock (_activationSpans)
				return _activationSpans.Any(a => time >= a.Start && time < a.End);
		}