ArgValidation 1.10.0
A simply arguments validation library with fluent API.
Examples:
Arg.NotNull(() => model);
Arg.Validate(color, nameof(color))
.NotNullOrWhitespace()
.LengthInRange(2, 20);
// passangerCount is Nullable type
Arg.IfNotNull(passangerCount, nameof(passangerCount))
.Positive();
Install-Package ArgValidation -Version 1.10.0
dotnet add package ArgValidation --version 1.10.0
<PackageReference Include="ArgValidation" Version="1.10.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ArgValidation --version 1.10.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: ArgValidation, 1.10.0"
For F# scripts that support #r syntax, copy this into the source code to reference the package.
Release Notes
Fixes error messages
Dependencies
-
.NETCoreApp 2.1
- No dependencies.
-
.NETStandard 1.0
- No dependencies.
-
.NETStandard 1.4
- No dependencies.
-
.NETStandard 2.0
- No dependencies.
Used By
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version History
Version | Downloads | Last updated |
---|---|---|
1.10.0 | 115 | 11/11/2020 |
1.9.0 | 1,816 | 6/12/2019 |
1.8.0 | 633 | 3/18/2019 |
1.7.0 | 689 | 1/20/2019 |
1.6.0 | 662 | 1/13/2019 |
1.5.0 | 555 | 1/8/2019 |
1.4.0 | 522 | 1/4/2019 |
1.3.0 | 485 | 12/23/2018 |
1.2.0 | 479 | 12/17/2018 |
1.0.1 | 484 | 11/25/2018 |
1.0.0 | 495 | 11/25/2018 |
0.3.0 | 499 | 11/11/2018 |
0.2.2 | 547 | 10/30/2018 |
0.2.1 | 499 | 10/28/2018 |
0.2.0 | 518 | 10/28/2018 |
0.1.0 | 527 | 10/20/2018 |