private async Task HandleUserLinkResponse(string link, HttpResponseMessage responseMessage)
 {
     _lastDocument = await responseMessage.Content.ReadAsGithubDocumentAsync(_linkFactory);
     _currentUser = UserLink.InterpretMessageBody(_lastDocument);
 }
Esempio n. 2
0
        private async Task HandleUserLinkResponse(Link link, HttpResponseMessage responseMessage)
        {
            _lastDocument = await responseMessage.Content.ReadAsGithubDocumentAsync(_linkFactory);

            _currentUser = UserLink.InterpretResponse(_lastDocument);
        }