Junior.Route.Routing.MatchResult.MatchResult C# (CSharp) Метод

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

private MatchResult ( MatchResultType resultType, IEnumerable matchedRestrictions, IEnumerable unmatchedRestrictions, string cacheKey = null ) : System.Collections.Generic
resultType MatchResultType
matchedRestrictions IEnumerable
unmatchedRestrictions IEnumerable
cacheKey string
Результат System.Collections.Generic
        private MatchResult(MatchResultType resultType, IEnumerable<IRestriction> matchedRestrictions, IEnumerable<IRestriction> unmatchedRestrictions, string cacheKey = null)
        {
            _resultType = resultType;
            _unmatchedRestrictions = unmatchedRestrictions.ToArray();
            _matchedRestrictions = matchedRestrictions.ToArray();
            _cacheKey = cacheKey;
        }