1. Serein.Proto.WebSocket项目中,ws方法入参新增了对于使用流程上下文作为参数的识别

This commit is contained in:
fengjiayi
2025-08-23 14:48:19 +08:00
parent 0029bc885e
commit 5656619a3b
7 changed files with 16 additions and 15 deletions

View File

@@ -254,6 +254,12 @@ namespace Serein.Proto.WebSocket.Handle
args[i] = data;
}
#endregion
#region
else if (config.UseContent[i])
{
args[i] = context;
}
#endregion
#region
else if (config.IsNeedSendDelegate[i]) // 传递SendAsync委托
{
@@ -308,6 +314,7 @@ namespace Serein.Proto.WebSocket.Handle
}
}
#endregion
}
if (!isCanInvoke)
{