Open sandboxFocus

Delegate PropertySetter<TValue, TIndex>

Defines the signature of methods implementing the Set semantic of a property with a single index parameter.

Namespace: PostSharp.Aspects.Advices
Assembly: PostSharp.dll
Syntax
public delegate void PropertySetter<TValue, TIndex>(TIndex index, TValue value)
Parameters
Type Name Description
TIndex index

Index.

TValue value

The property value.

Type Parameters
Name Description
TValue

Property value type.

TIndex

Property index type.

Constructors

Name Description
PropertySetter(object, nint)

Methods

Name Description
BeginInvoke(TIndex, TValue, AsyncCallback, object)
EndInvoke(IAsyncResult)
Invoke(TIndex, TValue)

See Also

Property<TValue, TIndex>