BaconographyPortable.ViewModel.CommentViewModel.GotoFullLinkImpl C# (CSharp) Method

GotoFullLinkImpl() private method

private GotoFullLinkImpl ( ) : void
return void
        private async void GotoFullLinkImpl()
        {
            MessengerInstance.Send<LoadingMessage>(new LoadingMessage { Loading = true });
            var linkThing = await _redditService.GetThingById(_comment.Data.LinkId);
            var commentTree = new SelectCommentTreeMessage { Context = 3, LinkThing = new TypedThing<Link>(linkThing) };
            MessengerInstance.Send<LoadingMessage>(new LoadingMessage { Loading = false });
            _navigationService.Navigate(_dynamicViewLocator.CommentsView, commentTree);
        }