public static bool hasSupportedBinding()

in src/BindingExtractor.cs [61:68]


        public static bool hasSupportedBinding(Type bindingType)
        {
            if (supportedBindings.Where(x => x.GetType() == bindingType).Count() > 0)
            {
                return true;
            }
            return false;
        }