File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -88,8 +88,8 @@ public AutoSuspendHelper(Application hostApplication) // TODO: Create Test
8888 /// Gets or sets the latest bundle.
8989 /// </summary>
9090 /// <remarks>
91- /// Updated whenever <see cref="Activity.OnSaveInstanceState"/> runs so callers can detect whether
92- /// <see cref="OnActivityCreated(Activity?, Bundle?)"/> represents a cold launch (<see langword="null"/>) or a
91+ /// Updated whenever <see cref="Activity.OnSaveInstanceState(Bundle) "/> runs so callers can detect whether
92+ /// <see cref="ObservableLifecycle. OnActivityCreated(Activity?, Bundle?)"/> represents a cold launch (<see langword="null"/>) or a
9393 /// recreation with persisted state.
9494 /// </remarks>
9595 public static Bundle ? LatestBundle { get ; set ; }
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ public AutoSuspendHelper(NSApplicationDelegate appDelegate)
8484 /// <param name="sender">The sender.</param>
8585 /// <returns>The termination reply from the application.</returns>
8686 /// <remarks>
87- /// Delays the OS shutdown until <see cref="RxApp.SuspensionHost .ShouldPersistState"/> subscribers finish writing
87+ /// Delays the OS shutdown until <see cref="ISuspensionHost .ShouldPersistState"/> subscribers finish writing
8888 /// <see cref="ISuspensionHost.AppState"/>, replying with <see cref="NSApplication.ReplyToApplicationShouldTerminate(bool)"/>
8989 /// once persistence completes.
9090 /// </remarks>
Original file line number Diff line number Diff line change @@ -12,11 +12,11 @@ namespace ReactiveUI;
1212/// <remarks>
1313/// <para>
1414/// <see cref="SuspensionHost"/> backs <see cref="RxApp.SuspensionHost"/> and provides concrete observables that are wired up
15- /// by helpers such as <see cref=" AutoSuspendHelper"/ >. Platform hosts push their lifecycle notifications into the
16- /// <c> ReplaySubject</c > instances exposed here and view models subscribe through <see cref="ISuspensionHost"/>.
15+ /// by helpers such as <c> AutoSuspendHelper</c >. Platform hosts push their lifecycle notifications into the
16+ /// <see cref=" ReplaySubject{T}"/ > instances exposed here and view models subscribe through <see cref="ISuspensionHost"/>.
1717/// </para>
1818/// <para>
19- /// Consumers rarely instantiate this type directly; instead call <c> RxApp.SuspensionHost</c > to access the singleton. The
19+ /// Consumers rarely instantiate this type directly; instead call <see cref=" RxApp.SuspensionHost"/ > to access the singleton. The
2020/// object is intentionally thread-safe via <see cref="ReplaySubject{T}"/> so events raised prior to subscription are
2121/// replayed to late subscribers.
2222/// </para>
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ namespace ReactiveUI;
1212/// <para>
1313/// These helpers provide strongly-typed access to the current application state and wire up the
1414/// <see cref="ISuspensionDriver"/> responsible for persisting it. They are typically invoked from platform bootstrap
15- /// classes after registering an <see cref=" AutoSuspendHelper"/ >.
15+ /// classes after registering an <c> AutoSuspendHelper</c >.
1616/// </para>
1717/// </remarks>
1818public static class SuspensionHostExtensions
You can’t perform that action at this time.
0 commit comments