コード例 #1
0
ファイル: Providers.cs プロジェクト: wangchengqun/azos
 protected Provider(IGlueImplementation glue, string name = null) : base(glue, name)
 {
     if (string.IsNullOrWhiteSpace(Name))
     {
         throw new GlueException(StringConsts.CONFIGURATION_ENTITY_NAME_ERROR + this.GetType().FullName);
     }
     Glue.RegisterProvider(this);
 }
コード例 #2
0
ファイル: Providers.cs プロジェクト: chadfords/azos
 private void __ctor()
 {
     if (string.IsNullOrWhiteSpace(Name))
     {
         throw new GlueException(StringConsts.CONFIGURATION_ENTITY_NAME_ERROR + this.GetType().FullName);
     }
     Glue.RegisterProvider(this);
 }