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

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

## Definition

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

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

```csharp
void Visit<TContainer, TList, TElement>(Property<TContainer, TList> property, ref TContainer container, ref TList list) where TList : IList<TElement>
```

### Parameters

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

### Remarks

This method is invoked by [IListPropertyAccept\<TList>](/engine/6000.3/script-reference/unity/properties/ilistpropertyaccept1.md)
