C# Class PortableRx.Reactive.SystemClockChangedEventArgs

Inheritance: System.EventArgs
Exibir arquivo Open project: robfe/PortableRx Class Usage Examples

Public Methods

Method Description
SystemClockChangedEventArgs ( ) : System

Creates a new system clock notification object with unknown old and new times.

SystemClockChangedEventArgs ( DateTimeOffset oldTime, DateTimeOffset newTime ) : System

Creates a new system clock notification object with the specified old and new times.

Method Details

SystemClockChangedEventArgs() public method

Creates a new system clock notification object with unknown old and new times.
public SystemClockChangedEventArgs ( ) : System
return System

SystemClockChangedEventArgs() public method

Creates a new system clock notification object with the specified old and new times.
public SystemClockChangedEventArgs ( DateTimeOffset oldTime, DateTimeOffset newTime ) : System
oldTime DateTimeOffset Time before the system clock changed, or DateTimeOffset.MinValue if not known.
newTime DateTimeOffset Time after the system clock changed, or DateTimeOffset.MaxValue if not known.
return System