BlogEngine.Core.Web.Extensions.ExtensionManager.Contains C# (CSharp) 메소드

Contains() 공개 정적인 메소드

Tell if manager already has this extension
public static Contains ( Type type ) : bool
type System.Type /// Extension Type ///
리턴 bool
        public static bool Contains(Type type)
        {
            return extensions.Any(extension => extension.Key == type.Name);
        }