FilterElement::CustomType Property

.NET Framework (current version)
 

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

Namespace:   System.ServiceModel.Routing.Configuration
Assembly:  System.ServiceModel.Routing (in System.ServiceModel.Routing.dll)

public:
[ConfigurationPropertyAttribute("customType", DefaultValue = null, 
	Options = ConfigurationPropertyOptions::None)]
property String^ CustomType {
	String^ get();
	void set(String^ value);
}

Property Value

Type: System::String^

The fully-qualified type.

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, seeFilterData.

.NET Framework
Available since 4.0
Return to top
Show: