@@ -43,7 +43,7 @@ public FakeTimeProvider()
4343 /// <remarks>
4444 /// The provider is set to not automatically advance time each time it is read.
4545 /// </remarks>
46- [ Experimental ]
46+ [ Experimental ( diagnosticId : "TBD" , UrlFormat = "TBD" ) ]
4747 public FakeTimeProvider ( DateTimeOffset startDateTime )
4848 {
4949 _ = Throw . IfLessThan ( startDateTime . Ticks , 0 ) ;
@@ -55,7 +55,7 @@ public FakeTimeProvider(DateTimeOffset startDateTime)
5555 /// <summary>
5656 /// Gets the starting date and time for this provider.
5757 /// </summary>
58- [ Experimental ]
58+ [ Experimental ( diagnosticId : "TBD" , UrlFormat = "TBD" ) ]
5959 public DateTimeOffset Start { get ; }
6060
6161 /// <summary>
@@ -94,7 +94,7 @@ public override DateTimeOffset GetUtcNow()
9494 /// Sets the date and time in the UTC time zone.
9595 /// </summary>
9696 /// <param name="value">The date and time in the UTC time zone.</param>
97- [ Experimental ]
97+ [ Experimental ( diagnosticId : "TBD" , UrlFormat = "TBD" ) ]
9898 public void SetUtcNow ( DateTimeOffset value )
9999 {
100100 lock ( Waiters )
@@ -120,7 +120,7 @@ public void SetUtcNow(DateTimeOffset value)
120120 /// marches forward automatically in hardware, for the fake time provider the application is responsible for
121121 /// doing this explicitly by calling this method.
122122 /// </remarks>
123- [ Experimental ]
123+ [ Experimental ( diagnosticId : "TBD" , UrlFormat = "TBD" ) ]
124124 public void Advance ( TimeSpan delta )
125125 {
126126 _ = Throw . IfLessThan ( delta . Ticks , 0 ) ;
@@ -155,7 +155,7 @@ public override long GetTimestamp()
155155 /// Sets the local time zone.
156156 /// </summary>
157157 /// <param name="localTimeZone">The local time zone.</param>
158- [ Experimental ]
158+ [ Experimental ( diagnosticId : "TBD" , UrlFormat = "TBD" ) ]
159159 public void SetLocalTimeZone ( TimeZoneInfo localTimeZone ) => _localTimeZone = localTimeZone ;
160160
161161 /// <summary>
0 commit comments