mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-19 16:06:33 +08:00
实现了拖拽式设置方法调用顺序、方法入参参数来源
This commit is contained in:
27
Library/Enums/JunctionOfConnectionType.cs
Normal file
27
Library/Enums/JunctionOfConnectionType.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Serein.Library
|
||||
{
|
||||
/// <summary>
|
||||
/// 连接的控制点类型枚举
|
||||
/// </summary>
|
||||
public enum JunctionOfConnectionType
|
||||
{
|
||||
/// <summary>
|
||||
/// 没有关系,用于处理非预期连接的情况需要的返回值
|
||||
/// </summary>
|
||||
None,
|
||||
/// <summary>
|
||||
/// 表示方法执行顺序关系
|
||||
/// </summary>
|
||||
Invoke,
|
||||
/// <summary>
|
||||
/// 表示参数获取来源关系
|
||||
/// </summary>
|
||||
Arg
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user