YAGuard 1.0.3

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

// Install YAGuard as a Cake Tool
#tool nuget:?package=YAGuard&version=1.0.3

YAGuard

Yet Another Guard argument validation package. Provide the argument for validation, its name is automatically resolved in the resulting exception. Usage: public void MyFunc(string myArg) { Guard.AgainstNull(myArg); } In case myArg is null, this will throw an ArgumentNullException with the correct argument name.

Supports single line argument checking and assignment as well: string result = Assign.NotNull(string source); will set result to source in case it is not null, or throw an appropriate ArgumentNullException in case it is null.

##Examples To validate method arguments: public void MyMethod(string myArg) { Guard.AgainstNull(myArg); // Will throw ArgumentNullException when myArg is null. Guard.AgainstNullOrEmptyString(myArg); // Will throw ArgumentException when myArg is null or empty. Guard.AgainstLongString(myArg, 10); // Will throw ArgumentException when myArg is longer then 10 characters.

MyProperty = myArg;
...

}

Use intellisense for a full list of supported validation methods.

To use a single line of code to validate and assign values to variables: public void MyMethod(string myArg) { MyProperty = Assign.NotNull(myArg); // Will throw ArgumentNullException when myArg is null, or assign myArg to MyProperty if not null. ... }

#Release History ##v1.0.x Added support for the style Guard.Against...(myArg); which automatically resolves the name of the argument.

Removed support for the style Guard.Against...(new { myArg });

##v0.0.x Implemented two styles: Guard.Against...(myArg, argName); Guard.Against...(new { myArg }); the second one to help avoid typing the name of the argument. But it didn't really help when compared to nameof(myArg).

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 netcoreapp2.2 is compatible.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Framework net452 is compatible.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETCoreApp 2.2

    • No dependencies.
  • .NETFramework 4.5.2

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on YAGuard:

Package Downloads
B.MaskedTimers

A timer with a set of intervals to mask when the timer can fire. The timer will only fire within the specified intervals.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.4 2,028 10/10/2023
1.1.3 4,610 3/5/2022
1.1.2 2,047 1/2/2021
1.1.1 298 12/29/2020
1.1.0 379 12/28/2020
1.0.4 315 12/27/2020
1.0.3 342 11/28/2020
1.0.2 342 11/28/2020
1.0.1 379 11/28/2020
1.0.0 400 11/28/2020
0.0.5 460 3/5/2020
0.0.4 404 2/5/2020
0.0.3 468 2/3/2020
0.0.2 531 2/2/2020
0.0.1 563 2/2/2020
0.0.0 432 2/2/2020

Implemented alternate argument name support for Assign methods.
Updated comments.