MethodDecorator.Fody
0.6.0
See the version list below for details.
dotnet add package MethodDecorator.Fody --version 0.6.0
NuGet\Install-Package MethodDecorator.Fody -Version 0.6.0
<PackageReference Include="MethodDecorator.Fody" Version="0.6.0" />
<PackageVersion Include="MethodDecorator.Fody" Version="0.6.0" />
<PackageReference Include="MethodDecorator.Fody" />
paket add MethodDecorator.Fody --version 0.6.0
#r "nuget: MethodDecorator.Fody, 0.6.0"
#:package MethodDecorator.Fody@0.6.0
#addin nuget:?package=MethodDecorator.Fody&version=0.6.0
#tool nuget:?package=MethodDecorator.Fody&version=0.6.0
Fody add-in to decorate arbitrary methods to run code before and after invocation
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
GitHub repositories (2)
Showing the top 2 popular GitHub repositories that depend on MethodDecorator.Fody:
| Repository | Stars |
|---|---|
|
OpenSagas-csharp/servicecomb-pack-csharp
The .NET omega agent for Apache incubator-servicecomb-saga https://github.com/apache/servicecomb-pack
|
|
|
WebVella/WebVella.BlazorTrace
Easy to plugin library for tracing most common problems when developing a Blazor application like unnecessary renders, memory leaks, slow components
|
The marker type can now be either an interface or a class. If it's an interface, it should be called IMethodDecorator. If it's a class, it should be called MethodDecoratorAttribute (although it doesn't strictly have to derive from System.Attribute). This allows specifying the implementation of the attribute in a separate assembly, while still being able to find the marker type. Also improved generation of IL for methods that contain multiple RET instructions.