Interface ILogCall<T>
A mini logger for a function call, which should be closed using a form of Return(...)
when the function completes.
[PublicApi]
public interface ILogCall<T> : ILogCall, ILog
Type Parameters
T
Type of data to return at the end of the call. Note that you cannot use
dynamic
for T, so if your result is dynamic, useobject
- Inherited Members
- Extension Methods
Remarks
- It's important to note that all Return commands are extension methods.
- Certain types such as
bool
have their own customReturn...
commands, such asReturnFalse()