Interface IComponentMatcher
Used to match components in a hierarchy. Both MatchesComponent(IComponent) for the IComponent and MatchesContainer(IContainer) for the parent IContainer must match in order to get a match.
Inherited Members
Namespace: EPiServer.Shell.ViewComposition
Assembly: EPiServer.Shell.dll
Version: 9.12.2Syntax
public interface IComponentMatcher : IContainerMatcher
Methods
MatchesComponent(IComponent)
Answers if the given component is a match.
Declaration
bool MatchesComponent(IComponent component)
Parameters
Type | Name | Description |
---|---|---|
IComponent | component | The component to match. |
Returns
Type | Description |
---|---|
System.Boolean |
|