RuleSettings.Custom 属性

定义

获取或设置自定义类的完全限定类型,该类用于实现 IWebEventCustomEvaluator

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

属性值

实现 IWebEventCustomEvaluator 的自定义类的完全限定类型。

属性

示例

下面的代码示例说明如何使用 Custom 属性。 此代码示例是为 HealthMonitoringSection 类提供的一个更大示例的一部分。

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

注解

类型引用的格式如下, () 不需要括号中的项: 命名空间TypenameAssemblyname[,] [Version=x,] [Culture=y,] [PublicKeyToken=z]。 例如,“ExampleNameSpace.ExampleType,Example.Assembly,Version=%ASSEMBLY_VERSION%,Culture=neutral,PublicKeyToken=%MICROSOFT_PUBLICKEY%”

适用于

另请参阅