コード例 #1
0
 public UpgradesViewModel(IFeaturesService featuresService)
 {
     LoadCommand = ReactiveCommand.CreateAsyncTask(async _ =>
     {
         Keys = (await featuresService.GetAvailableFeatureIds()).ToArray();
     });
 }
コード例 #2
0
 public UpgradesViewModel(IFeaturesService featuresService)
 {
     LoadCommand = ReactiveCommand.CreateAsyncTask(async _ =>
     {
         Keys = (await featuresService.GetAvailableFeatureIds()).ToArray();
     });
 }
コード例 #3
0
ファイル: UpgradesViewModel.cs プロジェクト: zhongyin/CodeHub
 protected override async Task Load(bool forceCacheInvalidation)
 {
     Keys = (await _featuresService.GetAvailableFeatureIds()).ToArray();
 }