Class FieldFilter
Represents field filter with type (Allow, Deny).
Inheritance
System.Object
    FieldFilter
  Inherited Members
      System.Object.ToString()
    
    
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
  Namespace: Mediachase.BusinessFoundation.Data.Meta.Management
Assembly: Mediachase.BusinessFoundation.Data.dll
Version: 10.8.0Syntax
public class FieldFilter
  Remarks
Supports multi-field (with ';' or ',' delimiter) and wildcard mask.
Constructors
FieldFilter(FieldFilterType, String)
Initializes a new instance of the FieldFilter class.
Declaration
public FieldFilter(FieldFilterType type, string field)
  Parameters
| Type | Name | Description | 
|---|---|---|
| FieldFilterType | type | The type.  | 
      
| System.String | field | The field.  | 
      
Properties
Type
Gets the type.
Declaration
public FieldFilterType Type { get; }
  Property Value
| Type | Description | 
|---|---|
| FieldFilterType | The type.  | 
      
Methods
IsMatch(String)
Matches the specified field name.
Declaration
public bool IsMatch(string fieldName)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | fieldName | Name of the field.  | 
      
Returns
| Type | Description | 
|---|---|
| System.Boolean |