# Visit<TContainer, TCollection, TElement>(Property<TContainer, TCollection>, ref TContainer, ref TCollection)

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

## Definition

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

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

```csharp
void Visit<TContainer, TCollection, TElement>(Property<TContainer, TCollection> property, ref TContainer container, ref TCollection collection) where TCollection : ICollection<TElement>
```

### Parameters

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

### Remarks

This method is invoked by [ICollectionPropertyAccept\<TCollection>](/engine/6000.5/script-reference/unity/properties/icollectionpropertyaccept1.md)
