private void CreateSetupBlocks() { _blocks.AddRange(CookiePropertySetter.GetCookiePropertySetters(_type, _handler, _context)); foreach (var behaviorInfo in RequestBehaviorInfo.GetInPriorityOrder()) { AddBehaviorBlock(behaviorInfo); } }
private IEnumerable <BehaviorInfo> GetSetupBehaviorInfos() { return(RequestBehaviorInfo.GetInPriorityOrder().Where(HandlerHasBehavior)); }