コード例 #1
0
 private void RegisterSingleton(ContentFactory factory)
 {
     if (string.IsNullOrEmpty(this.ContentType))
     {
         factory.RegisterSingletonContent(this.Type);
     }
     else
     {
         factory.RegisterSingletonContent(this.ContentType, this.Type);
     }
 }