RuleSettings.EventName Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the name of the EventMappingSettings object this rule applies to.
public:
property System::String ^ EventName { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("eventName", DefaultValue="", IsRequired=true)]
public string EventName { get; set; }
[<System.Configuration.ConfigurationProperty("eventName", DefaultValue="", IsRequired=true)>]
member this.EventName : string with get, set
Public Property EventName As String
Property Value
The name of the EventMappingSettings object this rule applies to.
- Attributes
Examples
The following code example shows how to use the EventName property. This code example is part of a larger example provided for the HealthMonitoringSection class.
ruleSetting.EventName = "All Errors";
ruleSetting.EventName = "All Errors"
Remarks
The EventMappingSettings object referenced by this property must be contained by the same HealthMonitoringSection object that also contains this RuleSettings
object.