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