ProfileSettings.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

属性值

String

实现 IWebEventCustomEvaluator 接口的自定义类的完全限定类型。 默认值为空字符串("")。

属性

示例

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

profileSetting.Custom = "MyEvaluators.MyCustomeEvaluator, MyCustom.dll";
profileSetting.Custom = "MyEvaluators.MyCustomeEvaluator, MyCustom.dll"

注解

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

适用于

另请参阅