RuleSettings.Custom Propriedade

Definição

Obtém ou define o tipo totalmente qualificado de uma classe personalizada que implementa o IWebEventCustomEvaluator.Gets or sets the fully qualified type of a custom class that implements IWebEventCustomEvaluator.

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

Valor da propriedade

String

O tipo totalmente qualificado de uma classe personalizada que implementa o IWebEventCustomEvaluator.The fully qualified type of a custom class that implements IWebEventCustomEvaluator.

Atributos

Exemplos

O exemplo de código a seguir mostra como usar a Custom propriedade.The following code example shows how to use the Custom property. Este exemplo de código faz parte de um exemplo maior fornecido para a HealthMonitoringSection classe.This code example is part of a larger example provided for the HealthMonitoringSection class.

ruleSetting.Custom = "MyEvaluators.MyCustomeEvaluator2, MyCustom.dll";
ruleSetting.Custom = "MyEvaluators.MyCustomeEvaluator2, MyCustom.dll"

Comentários

A referência de tipo é formada da seguinte maneira (os itens entre colchetes não são obrigatórios): namespace. TypeName, AssemblyName[,] [versão = x,] [cultura = y,] [PublicKeyToken = z].The type reference is formed as follows (items in brackets are not required): Namespace.Typename, Assemblyname[,] [Version=x,] [Culture=y,] [PublicKeyToken=z]. Por exemplo, "ExampleNameSpace. ExampleType, exemplo. assembly, Version =% ASSEMBLY_VERSION%, Culture = neutral, PublicKeyToken =% MICROSOFT_PUBLICKEY%"For example, "ExampleNameSpace.ExampleType, Example.Assembly, Version=%ASSEMBLY_VERSION%, Culture=neutral, PublicKeyToken=%MICROSOFT_PUBLICKEY%"

Aplica-se a

Confira também