共用方式為


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

屬性值

實作 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%」

適用於

另請參閱