Soenneker.Extensions.DateRangeType 4.0.722

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Extensions.DateRangeType --version 4.0.722
                    
NuGet\Install-Package Soenneker.Extensions.DateRangeType -Version 4.0.722
                    
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="Soenneker.Extensions.DateRangeType" Version="4.0.722" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Extensions.DateRangeType" Version="4.0.722" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Extensions.DateRangeType" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Soenneker.Extensions.DateRangeType --version 4.0.722
                    
#r "nuget: Soenneker.Extensions.DateRangeType, 4.0.722"
                    
#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.
#:package Soenneker.Extensions.DateRangeType@4.0.722
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Soenneker.Extensions.DateRangeType&version=4.0.722
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.DateRangeType&version=4.0.722
                    
Install as a Cake Tool

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

alternate text is missing from this package README image Soenneker.Extensions.DateRangeType

Converts Soenneker.Enums.DateRangeType.DateRangeType presets into UTC date boundaries using a supplied time zone.

Installation

dotnet add package Soenneker.Extensions.DateRangeType

Resolve a preset

using Soenneker.Enums.DateRangeType;
using Soenneker.Extensions.DateRangeType;

TimeZoneInfo timeZone = TimeZoneInfo.FindSystemTimeZoneById("America/New_York");

(DateTimeOffset? startAt, DateTimeOffset? endAt) =
    DateRangeType.CurrentMonth.GetDateTimesFromRange(timeZone);

Both non-null results are UTC instants. The supplied time zone determines the local calendar boundary before that boundary is converted to UTC, so offsets remain correct across daylight-saving transitions.

Range behavior

Preset Start End
Today Start of the current local day Time of the call
Yesterday Start of the previous local day Last tick of the previous local day
CurrentWeek Start of the current local week Time of the call
PreviousWeek Start of the previous local week Last tick of the previous local week
CurrentMonth Start of the current local month Time of the call
PreviousMonth Start of the previous local month Last tick of the previous local month
CurrentYear Start of the current local year Time of the call
PreviousYear Start of the previous local year Last tick of the previous local year
Custom or an unsupported value null null

Weeks begin on Monday. Current ranges use DateTimeOffset.UtcNow captured during the call; the API does not accept an external clock or custom endpoint.

Unit mapping

UnitOfTime unit = DateRangeType.Today.ToUnitOfTime();

Today and Yesterday map to UnitOfTime.Hour. Every other value maps to UnitOfTime.Second, including Custom.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows 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
4.0.739 0 9/13/2026
4.0.738 30 9/13/2026
4.0.737 34 9/13/2026
4.0.736 32 9/12/2026
4.0.735 39 9/12/2026
4.0.734 38 9/12/2026
4.0.733 43 9/12/2026
4.0.732 41 9/12/2026
4.0.731 41 9/12/2026
4.0.730 38 9/12/2026
4.0.729 61 9/10/2026
4.0.728 48 9/10/2026
4.0.727 62 9/10/2026
4.0.726 70 9/8/2026
4.0.725 48 9/8/2026
4.0.724 47 9/8/2026
4.0.723 47 9/8/2026
4.0.722 75 9/8/2026
4.0.721 80 9/8/2026
4.0.719 94 9/7/2026
Loading failed

Updated Soenneker.Extensions.DateTimeOffsets.Suite to 4.0.490