示例#1
0
 /// <summary>
 ///     Allows custom nodes to write custom code for containerBuilder
 /// </summary>
 /// <param name="customBootLogic"></param>
 public async Task StartCustomAsync(CustomBootLogic customBootLogic)
 {
     await customBootLogic.Invoke(this).ConfigureAwait(false);
 }
示例#2
0
 /// <summary>
 ///     Allows custom nodes to write custom code for containerBuilder
 /// </summary>
 /// <param name="customBootLogic"></param>
 public void StartCustom(CustomBootLogic customBootLogic)
 {
     customBootLogic.Invoke(this);
 }