GreyhamWooHoo.Interceptor.Core 1.1.4

dotnet add package GreyhamWooHoo.Interceptor.Core --version 1.1.4
NuGet\Install-Package GreyhamWooHoo.Interceptor.Core -Version 1.1.4
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="GreyhamWooHoo.Interceptor.Core" Version="1.1.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add GreyhamWooHoo.Interceptor.Core --version 1.1.4
#r "nuget: GreyhamWooHoo.Interceptor.Core, 1.1.4"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install GreyhamWooHoo.Interceptor.Core as a Cake Addin
#addin nuget:?package=GreyhamWooHoo.Interceptor.Core&version=1.1.4

// Install GreyhamWooHoo.Interceptor.Core as a Cake Tool
#tool nuget:?package=GreyhamWooHoo.Interceptor.Core&version=1.1.4

Intercept calls to an interface before or after the concrete implementation is invoked.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.1

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.4 2,125 3/23/2020
1.1.3 1,318 2/22/2020
1.1.2 531 2/22/2020
1.1.1 549 2/22/2020
1.0.9 1,493 1/31/2020
1.0.8 475 1/29/2020
1.0.7 762 1/25/2020

1.1.4
- Fixed a bug where OnAfter would be called for all After rules, not just the matching one

1.1.3
- Stub and OnAfter include parameters and arguments for the method call
- Improved internal code relating to stubbing void methods

1.1.2
- Support for multiple Before and multiple After callouts

1.1.1
- Adding support for method / return value interrogators
- Consolidated the async, Void and Task implementations (wrong assumptions/knowledge gap on my part)
- Tests consolidated / renamed
- Breaking Changes:
1. Prior implementation: non-generic Tasks were always assumed to be void (HasReturnValue=false on callout)
2. 1.1.1 Implementation: non-generic Tasks will interpret the .Result and callout with the correct result

1.0.9:
- Adding async void methods, extra tests
- Includes generic and non-generic builder interfaces (backwards compatible)

1.0.8:
- Adding support for async tasks / methods

1.0.7:
- Initial release.