ServiceStack.RouteResolutionResult.HasSameVariables C# (CSharp) Method

HasSameVariables() private method

private HasSameVariables ( RouteResolutionResult other ) : bool
other RouteResolutionResult
return bool
        internal bool HasSameVariables(RouteResolutionResult other)
        {
            return Route.Variables.All(v => other.Route.Variables.Contains(v));
        }
    }