/* Copyright (C) 2014-2019 de4dot@gmail.com This file is part of dnSpy dnSpy is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. dnSpy is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with dnSpy. If not, see . */ using System; using System.ComponentModel.Composition; namespace dnSpy.Contracts.Extension { /// /// All classes that export this type automatically get loaded at startup. /// Use to export it. /// public interface IAutoLoaded { } /// /// load type /// public enum AutoLoadedLoadType { /// /// Loaded before extensions are created /// BeforeExtensions, /// /// Loaded after extensions have been created /// AfterExtensions, /// /// Loaded after all extensions have been created and loaded /// AfterExtensionsLoaded, /// /// Loaded when the app has been loaded /// AppLoaded, } /// Metadata public interface IAutoLoadedMetadata { /// See AutoLoadedLoadType LoadType { get; } /// See double Order { get; } } /// /// Exports a instance /// [MetadataAttribute, AttributeUsage(AttributeTargets.Class, AllowMultiple = false)] public sealed class ExportAutoLoadedAttribute : ExportAttribute, IAutoLoadedMetadata { /// Constructor public ExportAutoLoadedAttribute() : base(typeof(IAutoLoaded)) => LoadType = AutoLoadedLoadType.AppLoaded; /// /// Order of this instance /// public double Order { get; set; } /// /// Default is /// public AutoLoadedLoadType LoadType { get; set; } } }