Delegate PropertyGetter<TContainer, TValue>
Represents the method that will handle getting a TValue
type for a specified container
.
Namespace: Unity.Properties
Syntax
public delegate TValue PropertyGetter<TContainer, out TValue>(ref TContainer container);
Parameters
Type | Name | Description |
---|---|---|
TContainer | container | The container which holds the data. |
Returns
Type | Description |
---|---|
TValue |
Type Parameters
Name | Description |
---|---|
TContainer | The strongly typed container. |
TValue | The strongly typed value to get. |