Dependency.Shelf
2.2.1
dotnet add package Dependency.Shelf --version 2.2.1
NuGet\Install-Package Dependency.Shelf -Version 2.2.1
<PackageReference Include="Dependency.Shelf" Version="2.2.1" />
paket add Dependency.Shelf --version 2.2.1
#r "nuget: Dependency.Shelf, 2.2.1"
// Install Dependency.Shelf as a Cake Addin #addin nuget:?package=Dependency.Shelf&version=2.2.1 // Install Dependency.Shelf as a Cake Tool #tool nuget:?package=Dependency.Shelf&version=2.2.1
Dependency Shelf
Simple static dependency injection, NOT a framework!
Methods
ShelveInstance<T>(T instance)
Attempts to put the instance passed on the shelf, if there is an instance of the same interface already shelved then the new instance is NOT shelved and the existing shelved instance persists. If T
is not an interface
or abstract
; OnlyInterfaceOrAbstractExpectedException
will be thrown. If the instance passed is null then; CanNotShelveNullException
will be thrown.
IsShelved<T>()
Returns a bool
, true
if an instance of interface T
is shelved, false
if there is not.
RetrieveInstance<T>()
Returns the shelved instance of T
, if there is not a shelved instance null
is returned.
ClearInstance<T>()
Returns a bool
, true
if there was no instance to remove or the instance was cleared successfully, false
if there is an instance but removal failed.
Clear()
Clears all instances, of any type, on the shelf.
ClearExceptions()
Clears all exceptions from the Exceptions Log.
IEnumerable<Exception> ExceptionLog()
Returns all caught exceptions held in the exceptions log.
Example
The following is an example of an injected internal class being used by another class library. The "Shelf" is global within the application domain.
ExampleGateway (Library containing common Interface)
IInjectedDependency.cs
namespace ExampleGateway
{
public interface IInjectedDependency
{
void DoSomething();
}
}
ExampleUsage (Library with a call to dependency)
ExampleUsingShelf.cs
using ExampleGateway;
using static Dependency.Shelf;
namespace ExampleUsage
{
public class ExampleUsingShelf
{
private static IInjectedDependency InjectedDependency => RetrieveInstance<IInjectedDependency>();
public static void RunSomeDependentCode()
{
InjectedDependency.DoSomething();
}
}
}
ShelfExample (Console App)
Program.cs
using ExampleUsage;
using static Dependency.Shelf;
namespace ShelfExample
{
class Program
{
static void Main(string[] args)
{
ShelveInstance<IInjectedDependency>(new RuntimeDependency());
ExampleUsingShelf.RunSomeDependentCode();
}
}
}
RuntimeDependency.cs
using System;
namespace ShelfExample
{
internal class RuntimeDependency : IInjectedDependency
{
public void DoSomething() => Console.WriteLine("Done Something!");
}
}
You can find a better example of usage here on github.
Usage is also featured in this Narcolepsy Pumpkin video (https://youtu.be/Sas78ILNyfU)
Product | Versions 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 | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- 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.
Improved Thread Safty, Allow Abstract Class types in addition to Interfaces