Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more

Class TableFilter

Represents table filter with type (Allow, Deny).

Inheritance
System.Object
TableFilter
Namespace: Mediachase.BusinessFoundation.Data.Meta.Management
Assembly: Mediachase.BusinessFoundation.Data.dll
Version: 14.26.0
Syntax
public class TableFilter : Object
Remarks

Supports multi-table (with ';' or ',' delimiter) and wildcard mask.

Constructors

TableFilter(TableFilterType, String)

Initializes a new instance of the TableFilter class.

Declaration
public TableFilter(TableFilterType type, string table)
Parameters
Type Name Description
TableFilterType type

The type.

System.String table

The table.

Properties

Type

Gets the type.

Declaration
public TableFilterType Type { get; }
Property Value
Type Description
TableFilterType

The type.

Methods

IsMatch(String)

Matches the specified table name.

Declaration
public bool IsMatch(string tableName)
Parameters
Type Name Description
System.String tableName

Name of the table.

Returns
Type Description
System.Boolean