Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ICommitCollection.cs « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 155ae3b5ac503896872223c6ac19c98f0311051e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System.Collections.Generic;

namespace LibGit2Sharp
{
    public interface ICommitCollection : IEnumerable<Commit>
    {
        /// <summary>
        ///   Gets the current sorting strategy applied when enumerating the collection.
        /// </summary>
        GitSortOptions SortedBy { get; }
    }
}