mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
补充了Library的注释
This commit is contained in:
@@ -1249,11 +1249,11 @@ namespace Serein.NodeFlow
|
||||
{
|
||||
return sereinIOC.Get<T>(key);
|
||||
}
|
||||
|
||||
|
||||
void ISereinIOC.CustomRegisterInstance(string key, object instance, bool needInjectProperty)
|
||||
|
||||
bool ISereinIOC.CustomRegisterInstance(string key, object instance, bool needInjectProperty)
|
||||
{
|
||||
sereinIOC.CustomRegisterInstance(key, instance, needInjectProperty);
|
||||
return sereinIOC.CustomRegisterInstance(key, instance, needInjectProperty);
|
||||
}
|
||||
|
||||
object ISereinIOC.Instantiate(Type type)
|
||||
|
||||
@@ -415,7 +415,7 @@ namespace Serein.NodeFlow
|
||||
catch(FlipflopException ex)
|
||||
{
|
||||
await Console.Out.WriteLineAsync($"触发器[{singleFlipFlopNode.MethodDetails.MethodName}]因非预期异常终止。"+ex.Message);
|
||||
if (ex.Clsss == FlipflopException.CancelClass.Flow)
|
||||
if (ex.Type == FlipflopException.CancelClass.Flow)
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -55,7 +55,7 @@ namespace Serein.NodeFlow.Model
|
||||
}
|
||||
catch (FlipflopException ex)
|
||||
{
|
||||
if(ex.Clsss == FlipflopException.CancelClass.Flow)
|
||||
if(ex.Type == FlipflopException.CancelClass.Flow)
|
||||
{
|
||||
throw;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user