ShouldSkip() private méthode

private ShouldSkip ( bool keepPublicApi, bool hidePrivateApi ) : bool
keepPublicApi bool
hidePrivateApi bool
Résultat bool
Exemple #1
0
        public bool ShouldSkip(EventKey evt, InheritMap map, bool keepPublicApi, bool hidePrivateApi)
        {
            if (ShouldSkip(evt.TypeKey, TypeSkipFlags.SkipEvent, map, hidePrivateApi))
            {
                return(true);
            }

            if (skipEvents.IsMatch(evt, map))
            {
                return(true);
            }

            return(evt.ShouldSkip(keepPublicApi, hidePrivateApi));
        }