BlogEngine.Core.Web.Extensions.ExtensionManager.IsNewExtension C# (CSharp) Method

IsNewExtension() private static method

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 ///
return bool
        private static bool IsNewExtension(string name)
        {
            return newExtensions.Contains(name);
        }