BaconographyPortable.ViewModel.ReadableArticleViewModel.LoadFully C# (CSharp) Method

LoadFully() public static method

public static LoadFully ( ISimpleHttpService httpService, string url, string linkId ) : Task
httpService ISimpleHttpService
url string
linkId string
return Task
        public static async Task<ReadableArticleViewModel> LoadFully(ISimpleHttpService httpService, string url, string linkId)
        {
            var resultTpl = await LoadFullyImpl(httpService, url);
            return new ReadableArticleViewModel { LinkId = linkId, ArticleUrl = url, ArticleParts = new ObservableCollection<object>(resultTpl.Item2), Title = resultTpl.Item1 };
        }