Is there a way to get web URL(TeamWebAccess like https://tfshost/tfs/Collection/Project/_git/Repository/pullrequest/12345
for PR#12345, not the API url) for a PullRequest using TFS client libraries?
var prId = 12345;
var tpc = new TfsTeamProjectCollection(new Uri(""));
var git = tpc.GetClient<GitHttpClient>();
// GitHttpClient has no special methods to do it
// and GitPullRequest obtained through GitHttpClient.GetPullRequestByIdAsync contains only the API link
var prWebUrl = git.?????(prId);
Perhaps there is something analogous to TswaClientHyperlinkService that I missed?
Or do I have to resort to deducing web URL from API link/GitPullRequest
properties?