RuleSettings.Provider 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 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.