FilterElement.CustomType Property

Definition

Gets or sets the fully-qualified type name of the custom type to be used as a filter.

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

Property Value

The fully-qualified type.

Attributes

Remarks

If FilterType is set to custom, CustomType is the fully-qualified type name of the class to create. FilterData can also contain values to be used during evaluation of the CustomType filter. The CustomType must implement a constructor that accepts a string value, which contains the FilterData information.

For more information, see FilterData.

Applies to