Microsoft.Bcl.TimeProvider 9.0.3
About
Microsoft.Bcl.TimeProvider provides time abstraction support for apps targeting .NET 7 and earlier, as well as those intended for the .NET Framework. For apps targeting .NET 8 and newer versions, referencing this package is unnecessary, as the types it contains are already included in the .NET 8 and higher platform versions.
Key Features
- Provides a common abstraction for time-related operations.
How to Use
using System;
// A class that uses TimeProvider to get the current time in Utc coordinates
public class UtcClock
{
private readonly TimeProvider _timeProvider;
// Constructor that takes a TimeProvider as a dependency
public Clock(TimeProvider timeProvider)
{
_timeProvider = timeProvider;
}
// A method that returns the current time as a string
public string GetTime()
{
return _timeProvider.GetLocalNow().ToString("HH:mm:ss");
}
}
// A class that inherits from TimeProvider and overrides the GetLocalNow method
public class UtcTimeProvider : TimeProvider
{
// Override the GetLocalNow method to always return UTC time
public override DateTimeOffset GetLocalNow()
{
return TimeProvider.System.GetUtcNow();
}
}
Main Types
The main types provided by this library are:
TimeProviderTimeProviderTaskExtensions
Additional Documentation
Feedback & Contributing
Microsoft.Bcl.TimeProvider is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.
Showing the top 20 packages that depend on Microsoft.Bcl.TimeProvider.
| Packages | Downloads |
|---|---|
|
Yarp.ReverseProxy
Reverse proxy toolkit for building fast proxy servers in .NET using the infrastructure from ASP.NET and .NET
|
60 |
|
Microsoft.Extensions.Caching.Hybrid
Multi-level caching implementation building on and extending IDistributedCache
|
7 |
|
Microsoft.AspNetCore.SignalR.Client.Core
Client for ASP.NET Core SignalR
This package was built from the source code at https://github.com/dotnet/dotnet/tree/fad253f51b461736dfd3cd9c15977bb7493becef
|
5 |
|
Microsoft.Extensions.ServiceDiscovery
Provides extensions to HttpClient that enable service discovery based on configuration.
|
5 |
|
Microsoft.Extensions.Telemetry
Provides canonical implementations of telemetry abstractions.
|
5 |
|
Microsoft.Extensions.Telemetry
Provides canonical implementations of telemetry abstractions.
|
4 |
|
Microsoft.Extensions.Caching.Hybrid
Multi-level caching implementation building on and extending IDistributedCache
|
4 |
|
Microsoft.Extensions.Telemetry
Provides canonical implementations of telemetry abstractions.
|
2 |
|
Microsoft.Extensions.Caching.Hybrid
Multi-level caching implementation building on and extending IDistributedCache
|
2 |
|
Microsoft.Extensions.Caching.Hybrid
Multi-level caching implementation building on and extending IDistributedCache
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/8af96e042134fb3b2f21df26dd0f32ea1c00dd37
|
2 |
|
Microsoft.Extensions.Caching.Hybrid
Experimental package. Multi-level caching implementation building on and extending IDistributedCache
|
2 |
|
Microsoft.Extensions.Caching.Hybrid
Multi-level caching implementation building on and extending IDistributedCache
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/f5084525411d53b81d9950b68616117750b674d4
|
2 |
|
Microsoft.AspNetCore.SignalR.Client.Core
Client for ASP.NET Core SignalR
This package was built from the source code at https://github.com/dotnet/dotnet/tree/c22dcd0c7a78d095a94d20e59ec0271b9924c82c
|
2 |
.NET Framework 4.6.2
- Microsoft.Bcl.AsyncInterfaces (>= 9.0.3)
- System.ValueTuple (>= 4.5.0)
.NET 8.0
- No dependencies.
.NET Standard 2.0
- Microsoft.Bcl.AsyncInterfaces (>= 9.0.3)