feat(dcl): add BrowseChildrenAsync to IOpcUaClient (NotImplementedException stubs)

This commit is contained in:
Joseph Doherty
2026-05-28 11:53:10 -04:00
parent 2ff138f1e8
commit 7fc1f752f8
2 changed files with 26 additions and 0 deletions
@@ -325,6 +325,12 @@ public class RealOpcUaClient : IOpcUaClient
string.IsNullOrWhiteSpace(configured)
? Path.Combine(Path.GetTempPath(), "ScadaBridge", "pki", fallbackLeaf)
: configured;
/// <inheritdoc />
// Real implementation lands in Task 8 of the OPC UA tag browser plan.
public Task<Commons.Interfaces.Protocol.BrowseChildrenResult> BrowseChildrenAsync(
string? parentNodeId, CancellationToken cancellationToken = default)
=> throw new NotImplementedException();
}
/// <summary>