Interface ICollectionPropertyBagAccept<TContainer>
Interface for accepting collection property bags visitation.
Namespace: Unity.Properties
Syntax
public interface ICollectionPropertyBagAccept<TContainer>
Type Parameters
Name | Description |
---|---|
TContainer | The container type. |
Methods
Accept(ICollectionPropertyBagVisitor, ref TContainer)
Call this method to invoke Visit<TCollection, TElement>(ICollectionPropertyBag<TCollection, TElement>, ref TCollection) with the strongly typed container.
Declaration
void Accept(ICollectionPropertyBagVisitor visitor, ref TContainer container)
Parameters
Type | Name | Description |
---|---|---|
ICollectionPropertyBagVisitor | visitor | The visitor being run. |
TContainer | container | The container being visited. |