Delegate PropertySetter<TContainer, TValue>
Represents the method that will handle setting a specified value
for a specified container
.
Namespace: Unity.Properties
Syntax
public delegate void PropertySetter<TContainer, in TValue>(ref TContainer container, TValue value);
Parameters
Type | Name | Description |
---|---|---|
TContainer | container | The container on which to set the data. |
TValue | value | The value to set. |
Type Parameters
Name | Description |
---|---|
TContainer | The strongly typed container. |
TValue | The strongly typed value to set. |