BaconographyPortable.ViewModel.LinkViewModel.GotoSubredditImpl C# (CSharp) Method

GotoSubredditImpl() private method

private GotoSubredditImpl ( ) : void
return void
		private async void GotoSubredditImpl()
        {
            if (IsExtendedOptionsShown)
                IsExtendedOptionsShown = false;
            Messenger.Default.Send<SelectSubredditMessage>(new SelectSubredditMessage { Subreddit = await _redditService.GetSubreddit(_linkThing.Data.Subreddit) });
        }

Usage Example

Beispiel #1
0
 private static void GotoSubredditStatic(LinkViewModel vm)
 {
     vm.GotoSubredditImpl();
 }
All Usage Examples Of BaconographyPortable.ViewModel.LinkViewModel::GotoSubredditImpl