Not working

This commit is contained in:
Matthias Heil
2026-04-07 12:21:37 +02:00
parent 8038c76307
commit 7b4bbd28a1
9 changed files with 28 additions and 28 deletions
+3 -3
View File
@@ -40,11 +40,11 @@ public class NamedPipeClient (string pipeName,string? serverLocation = null, st
}
}
public async Task<bool> SetDebugObjectAsync(DebugObject debugObject)
public async Task<bool> SetVisualizerModelAsync(VisualizerModel visualizerModel)
{
await StartServerAsync().ConfigureAwait(true);
var result = await PipeClient.InvokeAsync(server => server.SetDebugObjectAsync(debugObject));
Logger("NamedPipeClient.SetDebugObjectAsync: result = " + result);
var result = await PipeClient.InvokeAsync(server => server.SetVisualizerModelAsync(visualizerModel));
Logger("NamedPipeClient.SetVisualizerModelAsync: result = " + result);
return result;
}