ServiceStack.RestrictExtensions.HasAnyRestrictionsOf C# (CSharp) 메소드

HasAnyRestrictionsOf() 공개 정적인 메소드

public static HasAnyRestrictionsOf ( RequestAttributes allRestrictions, RequestAttributes restrictions ) : bool
allRestrictions RequestAttributes
restrictions RequestAttributes
리턴 bool
        public static bool HasAnyRestrictionsOf(RequestAttributes allRestrictions, RequestAttributes restrictions)
        {
            return (allRestrictions & restrictions) != 0;
        }
    }