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

IsNewExtension() 개인적인 정적인 메소드

Extension is "new" if it is loaded from assembly but not yet saved to the disk. This state is needed so that we can initialize extension and its settings on the first load and then override it from admin
private static IsNewExtension ( string name ) : bool
name string /// Extension name ///
리턴 bool
        private static bool IsNewExtension(string name)
        {
            return newExtensions.Contains(name);
        }