Skip to content
Concord

Class VoidOperation<T1>

Namespace
Concord
Assembly
Concord.Emit.dll

Control parameter used by invoke injections that wrap a one-argument void call, such as a property setter, or a one-parameter void target method under whole-method Around.

public sealed class VoidOperation<T1>

Type Parameters

T1

The wrapped call's or target method's argument type.

Inheritance
VoidOperation<T1>
Inherited Members

Methods

Invoke(T1)

Invokes the original operation from inside a wrap injection.

[SuppressMessage("Critical Code Smell", "S1186", Justification = "Marker signature erased and replaced by Concord IL lowering at emit time; a real body would be dead code.")]
public void Invoke(T1 arg1)

Parameters

arg1 T1

The value to pass to the original operation.