Пример #1
0
 /// <summary>
 /// Retrieves a summary of the differences between two files or folders at a given revision
 /// </summary>
 /// <param name="uri1">The reference uri for calculating the differences</param>
 /// <param name="revision1">The revision of the base uri</param>
 /// <param name="uri2">The uri which is compared to the base or reference uri</param>
 /// <param name="revision2">The revision of the second uri</param>
 /// <returns></returns>
 internal bool GetDiffSumary(string path1, int revision1, string path2, int revision2)
 {
     EnsureAuthenticated();
     return(m_client.HasContentChange(new Uri(path1), revision1, new Uri(path2), revision2));
 }