Class Operation<T>
- Namespace
- Concord
- Assembly
- Concord.Emit.dll
Marker parameter used by call-site wrapper injections that replace a value-producing operation.
public sealed class Operation<T>
Type Parameters
TThe value type accepted and returned by the wrapped operation.
- Inheritance
-
Operation<T>
- Inherited Members
Methods
Invoke(T)
Represents invoking the original operation from inside a wrap injection.
public T Invoke(T arg)
Parameters
argTThe value to pass to the original operation.
Returns
- T
The value produced by the original operation.