Acrolinx.Sdk.Sidebar.MatchesEventArgs.MatchesEventArgs C# (CSharp) Метод

MatchesEventArgs() приватный Метод

private MatchesEventArgs ( string checkId, IEnumerable matches ) : Acrolinx.Sdk.Sidebar.Documents
checkId string
matches IEnumerable
Результат Acrolinx.Sdk.Sidebar.Documents
        internal MatchesEventArgs(string checkId, IEnumerable<Match> matches)
            : base(checkId)
        {
            Contract.Requires(matches != null);
            Matches = new List<Match>(matches);
        }
        public IReadOnlyList<Match> Matches { get; private set; }
MatchesEventArgs