# Visit<TContainer, TDictionary, TKey, TValue>(Property<TContainer, TDictionary>, ref TContainer, ref TDictionary)

> Implement this method to accept visitation for a specialized dictionary property.

## Definition

* **Type:** Method
* **Namespace:** [Unity.Properties](/engine/6000.5/script-reference/unity/properties.md)
* **Assembly:** UnityEngine.PropertiesModule

## Visit\<T, U, V, W>(Property\<T, T>, T, T)

```csharp
void Visit<TContainer, TDictionary, TKey, TValue>(Property<TContainer, TDictionary> property, ref TContainer container, ref TDictionary dictionary) where TDictionary : IDictionary<TKey, TValue>
```

### Parameters

**** (\[Property\<T, T>]\(/engine/6000.5/script-reference/unity/properties/property2)): The property being visited.**** (T): The container being visited.**** (T): The dictionary value.

### Remarks

This method is invoked by [IDictionaryPropertyAccept\<TDictionary>](/engine/6000.5/script-reference/unity/properties/idictionarypropertyaccept1.md)
