GetTextAtRevision() private method

private GetTextAtRevision ( string repositoryPath, Revision revision ) : string
repositoryPath string
revision Revision
return string
 protected override string OnGetTextAtRevision(FilePath repositoryPath, Revision revision)
 {
     return(Svn.GetTextAtRevision(repositoryPath, revision));
 }
 protected override Task <string> OnGetTextAtRevisionAsync(FilePath repositoryPath, Revision revision, CancellationToken cancellationToken)
 {
     return(Task.FromResult(Svn.GetTextAtRevision(repositoryPath, revision, RootPath)));
 }