RuleSettings.Provider Property

Definition

Gets or sets the name of the ProviderSettings object this rule applies to.

public:
 property System::String ^ Provider { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("provider", DefaultValue="")]
public string Provider { get; set; }
[<System.Configuration.ConfigurationProperty("provider", DefaultValue="")>]
member this.Provider : string with get, set
Public Property Provider As String

Property Value

The name of the ProviderSettings object this rule applies to.

Attributes

Examples

The following code example shows how to use the Provider property. This code example is part of a larger example provided for the HealthMonitoringSection class.

ruleSetting.Provider = "EventLogProvider";
ruleSetting.Provider = "EventLogProvider"

Remarks

The ProviderSettings object referenced by this property must be contained by the same HealthMonitoringSection object that also contains this RuleSettings object.

Applies to

See also