Skip to content
This repository has been archived by the owner on Nov 20, 2023. It is now read-only.

Commit

Permalink
Fix link. Added releasedate
Browse files Browse the repository at this point in the history
  • Loading branch information
RobThree committed Oct 26, 2020
1 parent 7fc8ee1 commit 56217b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ITimer.Documentation/Content/VersionHistory/v1.0.0.0.aml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<topic id="9340bd14-6fb5-4204-8d7f-82cf089eeef6" revisionNumber="1">
<developerConceptualDocument xmlns="http://ddue.schemas.microsoft.com/authoring/2003/5" xmlns:xlink="http://www.w3.org/1999/xlink">
<introduction>
<para>Version 1.0.0 was released on [TODO: Date].
<para>Version 1.0.0 was released on 2020-10-26.
</para>
</introduction>

Expand Down
2 changes: 1 addition & 1 deletion ITimer.Documentation/Content/Welcome.aml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public void ConfigureServices(IServiceCollection services)
The <codeEntityReference>T:ITimer.TestTimer</codeEntityReference> offers some extra properties like the <codeEntityReference>P:ITimer.TestTimer.TickCount</codeEntityReference>, <codeEntityReference>P:ITimer.TestTimer.StartCount</codeEntityReference> and <codeEntityReference>P:ITimer.TestTimer.StopCount</codeEntityReference> that keep track of how often the <codeEntityReference>E:ITimer.ISignaler.Elapsed</codeEntityReference> event has been raised and the timer has been started and stopped respectively (all of which can be reset with the <codeEntityReference>M:ITimer.TestTimer.Reset</codeEntityReference> method). The <codeEntityReference>E:ITimer.ISignaler.Elapsed</codeEntityReference> event for the <codeEntityReference>T:ITimer.TestTimer</codeEntityReference> provides the <codeEntityReference>T:ITimer.TestTimerElapsedEventArgs</codeEntityReference> which also contains a <codeEntityReference>P:ITimer.TestTimerElapsedEventArgs.TickCount</codeEntityReference> property.
</para>
<para>
Most important, however, for the <codeEntityReference>T:ITimer.TestTimer</codeEntityReference> are the <codeEntityReference>M:ITimer.TestTimer.Tick(System.Nullable{System.DateTimeOffset})</codeEntityReference>, <codeEntityReference>M:ITimer.TestTimer.Tick(System.Collections.Generic.IEnumerable{System.DateTimeOffset})</codeEntityReference> and <codeEntityReference>M:ITimer.TestTimer.Tick(System.Int32, System.Func{System.Int32, System.DateTimeOffset})</codeEntityReference> methods. These methods will raise the <codeEntityReference>E:ITimer.ISignaler.Elapsed</codeEntityReference> event on the <codeEntityReference>T:ITimer.TestTimer</codeEntityReference> and allow you to specify the <codeEntityReference>P:ITimer.TimerElapsedEventArgs.SignalTime</codeEntityReference>.
Most important, however, for the <codeEntityReference>T:ITimer.TestTimer</codeEntityReference> are the <codeEntityReference>M:ITimer.TestTimer.Tick(System.Nullable{System.DateTimeOffset})</codeEntityReference>, <codeEntityReference>M:ITimer.TestTimer.Tick(System.Collections.Generic.IEnumerable{System.DateTimeOffset})</codeEntityReference> and <codeEntityReference>M:ITimer.TestTimer.Tick(System.Int32,System.Func{System.Int32,System.DateTimeOffset})</codeEntityReference> methods. These methods will raise the <codeEntityReference>E:ITimer.ISignaler.Elapsed</codeEntityReference> event on the <codeEntityReference>T:ITimer.TestTimer</codeEntityReference> and allow you to specify the <codeEntityReference>P:ITimer.TimerElapsedEventArgs.SignalTime</codeEntityReference>.
</para>
<para>
Given the above example, we can now replace the <codeEntityReference>T:ITimer.SystemTimer</codeEntityReference> with a <codeEntityReference>T:ITimer.TestTimer</codeEntityReference> for our tests:
Expand Down

0 comments on commit 56217b4

Please sign in to comment.