Junior.Route.Routing.MatchResult.MatchResult C# (CSharp) Method

MatchResult() private method

private MatchResult ( MatchResultType resultType, IEnumerable matchedRestrictions, IEnumerable unmatchedRestrictions, string cacheKey = null ) : System.Collections.Generic
resultType MatchResultType
matchedRestrictions IEnumerable
unmatchedRestrictions IEnumerable
cacheKey string
return 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;
        }