MMOJr.ESI.Standard 7.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package MMOJr.ESI.Standard --version 7.0.1
NuGet\Install-Package MMOJr.ESI.Standard -Version 7.0.1
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="MMOJr.ESI.Standard" Version="7.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MMOJr.ESI.Standard --version 7.0.1
#r "nuget: MMOJr.ESI.Standard, 7.0.1"
#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 MMOJr.ESI.Standard as a Cake Addin
#addin nuget:?package=MMOJr.ESI.Standard&version=7.0.1

// Install MMOJr.ESI.Standard as a Cake Tool
#tool nuget:?package=MMOJr.ESI.Standard&version=7.0.1

E.S.I. - Execute Scope Instances .NET Standard 2.1

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.

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
9.0.21 347 1/16/2023
9.0.20 325 1/16/2023
8.2.21 332 12/13/2022
8.2.20 307 12/13/2022
8.1.21 344 11/21/2022
8.1.20 320 11/21/2022
7.0.1 455 5/30/2022
6.0.1 467 3/13/2022
6.0.0 423 3/13/2022
5.0.1 367 8/16/2021
5.0.0 329 8/16/2021
4.2.1 400 5/6/2021
4.1.1 330 5/4/2021
3.1.1 368 4/7/2021
2.1.1 373 4/5/2021
1.0.0 368 3/30/2021

Changes Version 7.x.x:

1. This version no longer supports the Inner Events of Method OnExecute(configuration):
* OnSuccess, OnFailure and OnException.

2. New Virtual Method of Exception. No Mandatory implementation, from ESIControllerBase<TData>.
* protected virtual void OnException(IESIConfigurationException<TData> configuration);
It will be executed if any Exception occurs in the OnExecute Method.
Now the ESIEndType and ESIEndLoop Flags are available to be set as needed.
By Default the ESIEndType Flags will be Execution and ESIEndLoop will be Break.

3. New Virtual Method of Success, Failure and Exception, from ESIBusinessBase<TData>.
* protected virtual void OnSuccess(IESIConfigurationSuccess<TData> configuration):
Virtual Method of Success. No Mandatory implementation;
It will be executed if Boolean Success is True on OnExecute Method.

* protected virtual void OnFailure(IESIConfigurationFailure<TData> configuration):
Virtual Method of Failure. No Mandatory implementation;
It will be executed if Boolean Success is False on OnExecute Method.

* protected virtual void OnException(IESIConfigurationException<TData> configuration);
Virtual Method of Exception. No Mandatory implementation;
It will be executed if any Exception occurs in the OnExecute, OnFailure or OnSuccess Methods;
Now the ESIEndType and ESIEndLoop Flags are available to be set as needed.
By Default the ESIEndType Flags will be Execution and ESIEndLoop will be Break;

4. New Virtual Method of Exception. No Mandatory implementation, from ESIRepositoryBase<TData>.
* protected virtual void OnException(IESIConfigurationException<TData> configuration);
It will be executed if any Exception occurs in the OnExecute Method.
Now the ESIEndType and ESIEndLoop Flags are available to be set as needed.
By Default the ESIEndType Flags will be Execution and ESIEndLoop will be Break.

For more information about ESI, visit the website: mmojrti.com or contact us by email: support@mmojrti.com.