mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-04-01 22:16:34 +08:00
新增了卸载程序集的功能
This commit is contained in:
@@ -278,9 +278,9 @@ namespace Serein.NodeFlow.Env
|
||||
}
|
||||
|
||||
|
||||
public void LoadDll(string dllPath)
|
||||
public void LoadLibrary(string dllPath)
|
||||
{
|
||||
currentFlowEnvironment.LoadDll(dllPath);
|
||||
currentFlowEnvironment.LoadLibrary(dllPath);
|
||||
}
|
||||
|
||||
public void LoadProject(FlowEnvInfo flowEnvInfo, string filePath)
|
||||
@@ -307,9 +307,9 @@ namespace Serein.NodeFlow.Env
|
||||
}
|
||||
|
||||
|
||||
public bool RemoteDll(string assemblyName)
|
||||
public bool UnloadLibrary(string assemblyName)
|
||||
{
|
||||
return currentFlowEnvironment.RemoteDll(assemblyName);
|
||||
return currentFlowEnvironment.UnloadLibrary(assemblyName);
|
||||
}
|
||||
|
||||
public async Task<bool> RemoveConnectInvokeAsync(string fromNodeGuid, string toNodeGuid, ConnectionInvokeType connectionType)
|
||||
|
||||
Reference in New Issue
Block a user