Defines the signature of methods implementing the Get semantic of a property with a single index parameter.
Namespace: PostSharp.Aspects.Advices
Assembly: PostSharp.dll
Syntax
public delegate TValue PropertyGetter<TValue, TIndex>(TIndex index)Parameters
| Type | Name | Description |
|---|---|---|
| TIndex | index | Index. |
Returns
| Type | Description |
|---|---|
| TValue | The property value. |
Type Parameters
| Name | Description |
|---|---|
| TValue | Property value type. |
| TIndex | Property index type. |
Constructors
| Name | Description |
|---|---|
| PropertyGetter(object, nint) |
Methods
| Name | Description |
|---|---|
| BeginInvoke(TIndex, AsyncCallback, object) | |
| EndInvoke(IAsyncResult) | |
| Invoke(TIndex) |
See Also
Property<TValue, TIndex>