RuleFiringRecord Class
Represents the firing record for an event that derives from the WebManagementEvent class and implements the IWebEventCustomEvaluator interface.
Assembly: System.Web (in System.Web.dll)
| Name | Description | |
|---|---|---|
![]() | LastFired | Gets the last time that the event was last fired. |
![]() | TimesRaised | Gets the total number of times that the event has been raised. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
The RuleFiringRecord class provides information that could be used to determine whether the firing of the event should be recorded.
The following code example shows how the RuleFiringRecord is used when passed to the CanFire method.
// Implements the IWebEventCustomEvaluator.CanFire // method. It is called by the ASP.NET if this custom // type is configured in the profile // element of the healthMonitoring section. public bool CanFire( System.Web.Management.WebBaseEvent e, RuleFiringRecord rule) { bool fireEvent; string lastFired = rule.LastFired.ToString(); string timesRaised = rule.TimesRaised.ToString(); // Fire every other event raised. fireEvent = (rule.TimesRaised % 2 == 0) ? true : false; if (fireEvent) { firingRecordInfo = string.Format("Event last fired: {0}", lastFired) + string.Format(". Times raised: {0}", timesRaised); } else firingRecordInfo = string.Format( "Event not fired. Times raised: {0}", timesRaised); return fireEvent; }
Available since 2.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

