Compartir a través de


RuleSettings.Profile Propiedad

Definición

Obtiene o establece el nombre del objeto ProfileSettings al que se aplica esta regla.

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

Valor de propiedad

String

Nombre del objeto ProfileSettings al que se aplica esta regla.

Atributos

Ejemplos

En el ejemplo de código siguiente se muestra cómo utilizar la propiedad Profile. Este ejemplo de código es parte de un ejemplo mayor proporcionado para la clase HealthMonitoringSection.

ruleSetting.Profile = "Custom";
ruleSetting.Profile = "Custom"

Comentarios

El ProfileSettings objeto al que hace referencia esta propiedad debe estar incluido en el mismo HealthMonitoringSection objeto que también lo contiene. RuleSettings

objeto.

Se aplica a

Consulte también