Beispiel #1
0
 /// <summary>
 ///
 /// </summary>
 public static Task <IAppState> SetStateAsync <TStateController>(this IAppStateManager stateManager) where TStateController : class, IAppStateController
 {
     return(stateManager.PushStateAsync <TStateController>(PushOptions.Set, null));
 }
Beispiel #2
0
 /// <summary>
 ///
 /// </summary>
 public static Task <IAppState> PushStateAsync <TStateController>(this IAppStateManager stateManager, object args) where TStateController : class, IAppStateController
 {
     return(stateManager.PushStateAsync <TStateController>(PushOptions.None, args));
 }