Tp.Subversion.Subversion.Subversion.GetDiff C# (CSharp) Method

GetDiff() public method

public GetDiff ( RevisionId changeset, string path ) : DiffResult
changeset Tp.SourceControl.VersionControlSystem.RevisionId
path string
return Tp.SourceControl.Diff.DiffResult
		public override DiffResult GetDiff(RevisionId changeset, string path)
		{
			var revisionId = new SvnRevisionId(changeset);
			var previousRevisionId = ((revisionId).Value - 1).ToString();
			try
			{
				return GetDiff(changeset, path, previousRevisionId);
			}
			catch (SvnFileSystemException ex)
			{
				throw new VersionControlException(String.Format("Subversion exception: {0}", ex.Message));
			}
		}

Same methods

Subversion::GetDiff ( RevisionId changeset, string path, string previousRevisionId ) : DiffResult