AgileCoding.Extentions.Activator
2.0.5
dotnet add package AgileCoding.Extentions.Activator --version 2.0.5
NuGet\Install-Package AgileCoding.Extentions.Activator -Version 2.0.5
<PackageReference Include="AgileCoding.Extentions.Activator" Version="2.0.5" />
paket add AgileCoding.Extentions.Activator --version 2.0.5
#r "nuget: AgileCoding.Extentions.Activator, 2.0.5"
// Install AgileCoding.Extentions.Activator as a Cake Addin #addin nuget:?package=AgileCoding.Extentions.Activator&version=2.0.5 // Install AgileCoding.Extentions.Activator as a Cake Tool #tool nuget:?package=AgileCoding.Extentions.Activator&version=2.0.5
AgileCoding.Extensions.Activator
Overview
The AgileCoding.Extensions.Activator is a .NET library that provides extension methods for the System.Type
class and the System.Exception
class. These extension methods are mainly designed to assist with creating instances of types using the Activator.CreateInstance
method and handling exceptions thrown by the .NET Reflection API.
Installation
This library is available as a NuGet package. You can install it using the NuGet package manager console:
bashCopy code
Install-Package AgileCoding.Extensions.Activator -Version 2.0.5
Features
The library provides two main features:
Creating instances of types with detailed error logging: The
CreateInstanceWithLogging
extension method can be used to create an instance of a type. If there are any issues during the creation of the instance, the method logs detailed error information.Creating instances of types without detailed error logging: The
CreateInstanceWithoutLogging
extension method can be used to create an instance of a type without logging detailed error information.Handling Reflection API Exceptions: The
ToStringAll
extension method can be used to convert an exception to a string representation. This is particularly useful for handling exceptions thrown by the .NET Reflection API.
Usage
Here's a brief overview of how you can use these features in your code:
using System;
using AgileCoding.Extentions.Activators;
using AgileCoding.Library.Interfaces.Logging;
// Suppose 'logger' is an instance of a class implementing the ILogger interface.
Type myType = typeof(MyClass);
var instance = myType.CreateInstanceWithLogging<IMyInterface>(logger, constructorParameter1, constructorParameter2);
// ...
try
{
// Some code that can throw exceptions.
}
catch (Exception ex)
{
string errorDetails = ex.ToStringAll();
logger.WriteError(errorDetails);
}
Documentation
For more detailed information about the usage of this library, please refer to the official documentation.
License
This project is licensed under the terms of the MIT license. For more information, see the LICENSE file.
Contributing
Contributions are welcome! Please see our contributing guidelines for more details.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. 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. |
-
net6.0
- AgileCoding.Extentions.Logger (>= 2.0.6)
- AgileCoding.Library.Interfaces (>= 2.0.6)
NuGet packages (7)
Showing the top 5 NuGet packages that depend on AgileCoding.Extentions.Activator:
Package | Downloads |
---|---|
AgileCoding.Extentions.TimeSpan
Extensions related to TimeSpans |
|
AgileCoding.Extentions.Generic
Extensions for Generic stuff |
|
AgileCoding.Extentions.Dictionary
Extensions related to Dictionaries |
|
AgileCoding.Library.Types
Library to work with types |
|
AgileCoding.Extentions.Int
Extensions related tor integer |
GitHub repositories
This package is not used by any popular GitHub repositories.
moving to core