Class EnumerationObjectTypeFilter
- Namespace
- CMS.DataEngine
- Assembly
- CMS.DataEngine.dll
Filter excluding everything except of given type enumeration.
[Obsolete("Class was not intended for public use and will be removed in the next version.")]
[ObsoleteSince(30, 0)]
public class EnumerationObjectTypeFilter : IObjectTypeFilter
- Inheritance
-
objectEnumerationObjectTypeFilter
- Implements
- Extension Methods
Constructors
EnumerationObjectTypeFilter(ISet<string>)
Initializes a new instance of the EnumerationObjectTypeFilter.
public EnumerationObjectTypeFilter(ISet<string> types)
Parameters
types
ISet<string>Object types to include. Everything else will be filtered out.
Properties
ObjectTypes
Object types to be included. Everything else will be filtered out.
protected ISet<string> ObjectTypes { get; init; }
Property Value
- ISet<string>
Methods
IsBindingIncludedToParent(ObjectTypeInfo)
Indicates whether given type info is a binding processed together with its parent, hence should be ignored in the output.
public bool IsBindingIncludedToParent(ObjectTypeInfo bindingTypeInfo)
Parameters
bindingTypeInfo
ObjectTypeInfoBinding type info
Returns
- bool
IsChildIncludedToParent(ObjectTypeInfo)
Indicates whether given type info is a child processed together with its parent, hence should be ignored in the output.
public bool IsChildIncludedToParent(ObjectTypeInfo childTypeInfo)
Parameters
childTypeInfo
ObjectTypeInfoChild type info
Returns
- bool
IsIncludedType(string)
Returns true if the given object type is included in output.
public bool IsIncludedType(string objectType)
Parameters
objectType
stringObject type name
Returns
- bool