扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
作者:Jack H Hansen 来源:csdn 2007年11月13日
关键字:
/// /// 用来指定一个插件的相关信息 /// public class PluginInfoAttribute : System.Attribute { /// /// Deprecated. Do not use. /// public PluginInfoAttribute() {} public PluginInfoAttribute( string name , string version , string author , string webpage , bool loadWhenStart ) { // 细节已略去 } public string Name { get { return _Name; } } public string Version { get { return _Version; } } public string Author { get { return _Author; } } public string Webpage { get { return _Webpage; } } public bool LoadWhenStart { get { return _LoadWhenStart; } } /// /// 用来存储一些有用的信息 /// public object Tag { get { return _Tag; } set { _Tag = value ; } } /// /// 用来存储序号 /// public int Index { get { return _Index; } set { _Index = value ; } } private string _Name = ""; private string _Version = ""; private string _Author = ""; private string _Webpage = ""; private object _Tag = null ; private int _Index = 0; // 暂时不会用 private bool _LoadWhenStart = true ; } |
/// /// My Pluging 1( Just for test ) /// [ PluginInfo("My Pluging 1( Just for test )" ,"1.0" , "Jack H Hansen" , "http://blog.csdn.net/matrix2003b" , true ) ] public class MyPlugin1 : IPlugin { public MyPlugin1() { } #region IPlugin 成员 // 细节已略去 #endregion private IApplicationObject _App; private IDocumentObject _CurDoc; } |
private bool IsValidPlugin( Type t ) { bool ret = false ; Type[] interfaces = t.GetInterfaces(); foreach ( Type theInterface in interfaces ) { if ( theInterface.FullName == "CSPluginKernel.IPlugin" ) { ret = true ; break ; } } return ret; } |
plugins.Add( pluginAssembly.CreateInstance( plugingType.FullName ) ); |
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者