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