FilterableAttribute.IsTypeFilterable(Type) Method

Definition

Determines whether the specified data type supports device filtering.

public:
 static bool IsTypeFilterable(Type ^ type);
public static bool IsTypeFilterable (Type type);
static member IsTypeFilterable : Type -> bool
Public Shared Function IsTypeFilterable (type As Type) As Boolean

Parameters

type
Type

A Type that represents the data type to test.

Returns

true if the data type contained in the type parameter supports device filtering; otherwise, false.

Exceptions

The type parameter is null.

Remarks

Use the IsTypeFilterable method to determine whether the specified type supports device filtering. A type supports device filtering if it has a FilterableAttribute attribute applied to it.

Applies to

See also