次の方法で共有


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"

注釈

型参照は次のように形成されます (角かっこ内の項目は必須ではありません): 名前空間Typename,Assemblyname[,] [Version=x,] [Culture=y,] [PublicKeyToken=z]。 たとえば、"ExampleNameSpace.ExampleType, Example.Assembly, Version=%ASSEMBLY_VERSION%, Culture=neutral, PublicKeyToken=%MICROSOFT_PUBLICKEY%" などです。

適用対象

こちらもご覧ください