Noda Time
IClock Interface
NamespacesNodaTimeIClock

[This is preliminary documentation and is subject to change.]

Represents a clock which can return the current time as an Instant.
Declaration Syntax
C#Visual BasicVisual C++
public interface IClock
Public Interface IClock
public interface class IClock
Members
All MembersProperties



IconMemberDescription
Now
Gets the current Instant on the time line according to this clock.

Remarks
IClock is intended for use anywhere you need to have access to the current time. Although it's not strictly incorrect to call SystemClock.Instance.Now directly, in the same way as you might call UtcNow, it's strongly discouraged as a matter of style for production code. We recommend providing an instance of IClock to anything that needs it, which allows you to write tests using the fake clock in the NodaTime.Testing assembly (or your own implementation).
Thread Safety
All implementations in Noda Time are thread-safe; custom implementations should be thread-safe too. See the thread safety section of the user guide for more information.
See Also

Assembly: NodaTime (Module: NodaTime.dll) Version: 1.2.0.0 (1.2.0)