コード例 #1
0
ファイル: AppState.cs プロジェクト: mzike/Gitter
 public AppState(
     ILocalStorageService localStorage,
     ILocalisationHelper localisationHelper,
     NavigationManager uriHelper
     )
 {
     LocalStorage       = localStorage;
     LocalisationHelper = localisationHelper;
     UriHelper          = uriHelper;
     Task.Factory.StartNew(Initialise);
 }
コード例 #2
0
ファイル: AppState.cs プロジェクト: GoranHalvarsson/Gitter
 public AppState(IJSRuntime jSRuntime,
                 ILocalStorageService localStorage,
                 IComponentContext componentContext,
                 ILocalisationHelper localisationHelper,
                 IChatApi gitterApi)
 {
     JSRuntime          = jSRuntime;
     LocalStorage       = localStorage;
     ComponentContext   = componentContext;
     LocalisationHelper = localisationHelper;
     GitterApi          = gitterApi;
     //Task.Factory.StartNew(Initialise);
 }
コード例 #3
0
ファイル: AppState.cs プロジェクト: chucker/Gitter
 public AppState(
     ILocalStorageService localStorage,
     IComponentContext componentContext,
     ILocalisationHelper localisationHelper,
     IUriHelper uriHelper
     )
 {
     LocalStorage       = localStorage;
     ComponentContext   = componentContext;
     LocalisationHelper = localisationHelper;
     UriHelper          = uriHelper;
     Task.Factory.StartNew(Initialise);
 }