FakeTimeProvider Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
FakeTimeProvider() |
Initializes a new instance of the FakeTimeProvider class. |
FakeTimeProvider(DateTimeOffset) |
Initializes a new instance of the FakeTimeProvider class. |
FakeTimeProvider()
- Source:
- FakeTimeProvider.cs
- Source:
- FakeTimeProvider.cs
Initializes a new instance of the FakeTimeProvider class.
public:
FakeTimeProvider();
public FakeTimeProvider ();
Public Sub New ()
Remarks
This creates a provider whose time is initially set to midnight January 1st 2000. The provider is set to not automatically advance time each time it is read.
Applies to
FakeTimeProvider(DateTimeOffset)
- Source:
- FakeTimeProvider.cs
- Source:
- FakeTimeProvider.cs
Initializes a new instance of the FakeTimeProvider class.
public:
FakeTimeProvider(DateTimeOffset startDateTime);
public FakeTimeProvider (DateTimeOffset startDateTime);
new Microsoft.Extensions.Time.Testing.FakeTimeProvider : DateTimeOffset -> Microsoft.Extensions.Time.Testing.FakeTimeProvider
Public Sub New (startDateTime As DateTimeOffset)
Parameters
- startDateTime
- DateTimeOffset
The initial time and date reported by the provider.
Remarks
The provider is set to not automatically advance time each time it is read.
Applies to
.NET