RSCG_FunctionsWithDI 2022.6.19.949
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package RSCG_FunctionsWithDI --version 2022.6.19.949
NuGet\Install-Package RSCG_FunctionsWithDI -Version 2022.6.19.949
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="RSCG_FunctionsWithDI" Version="2022.6.19.949" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add RSCG_FunctionsWithDI --version 2022.6.19.949
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: RSCG_FunctionsWithDI, 2022.6.19.949"
#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 RSCG_FunctionsWithDI as a Cake Addin #addin nuget:?package=RSCG_FunctionsWithDI&version=2022.6.19.949 // Install RSCG_FunctionsWithDI as a Cake Tool #tool nuget:?package=RSCG_FunctionsWithDI&version=2022.6.19.949
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
FunctionsDI
DI for functions
#Usage
public partial class TestDIFunction
{
public bool TestMyFunc1([FromServices] TestDI1 t1, [FromServices] TestDI2 t2, int x, int y)
{
return true;
}
}
generates
public partial class TestDIFunction
{
private TestDI1 _TestDI1;
private TestDI2 _TestDI2;
public TestDIFunction
(TestDI1 _TestDI1,TestDI2 _TestDI2)
{
this._TestDI1=_TestDI1;
this._TestDI2=_TestDI2;
} //end constructor
//making call to TestMyFunc1
public bool TestMyFunc1(int x,int y){
var t1 = this._TestDI1 ;
if(t1 == null) throw new ArgumentException(" service TestDI1 is null in TestDIFunction ");
var t2 = this._TestDI2 ;
if(t2 == null) throw new ArgumentException(" service TestDI2 is null in TestDIFunction ");
return TestMyFunc1(t1,t2,x,y);
}
There are no supported framework assets in this package.
Learn more about Target Frameworks and .NET Standard.
-
.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.
Version | Downloads | Last updated |
---|---|---|
2022.7.7.636 | 471 | 7/7/2022 |
2022.7.4.34 | 412 | 7/3/2022 |
2022.6.19.1605 | 442 | 6/19/2022 |
2022.6.19.949 | 397 | 6/19/2022 |