System.ComponentModel.LicenseManager.GetCachedNoLicenseProvider C# (CSharp) Method

GetCachedNoLicenseProvider() private static method

Determines if type was actually cached to have _no_ provider, as opposed to not being cached.
private static GetCachedNoLicenseProvider ( Type type ) : bool
type Type
return bool
        private static bool GetCachedNoLicenseProvider(Type type)
        {
            if (s_providers != null)
            {
                return s_providers.ContainsKey(type);
            }
            return false;
        }