-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathRtcBase.cs
49 lines (43 loc) · 1.4 KB
/
RtcBase.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
namespace Iot.Device.Rtc
{
/// <summary>
/// Real time clock (RTC).
/// </summary>
public abstract class RtcBase : IDisposable
{
/// <summary>
/// Gets or sets the device's <see cref="System.DateTime"/>
/// </summary>
public virtual DateTime DateTime
{
get => ReadTime();
set => SetTime(value);
}
/// <summary>
/// Set the device time.
/// </summary>
/// <param name="time">Time.</param>
protected abstract void SetTime(DateTime time);
/// <summary>
/// Read time from the device.
/// </summary>
/// <returns>Time from the device.</returns>
protected abstract DateTime ReadTime();
/// <inheritdoc/>
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
/// <summary>
/// Releases the unmanaged resources used by the RtcBase and optionally releases the managed resources.
/// </summary>
/// <param name="disposing">True to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
protected virtual void Dispose(bool disposing)
{
}
}
}