feat(dcl): BrowseNext continuation paging + StubOpcUaClient canned browse (T15)

This commit is contained in:
Joseph Doherty
2026-06-18 02:21:59 -04:00
parent 3c9122bc07
commit 2cfe0de927
8 changed files with 258 additions and 37 deletions
@@ -298,8 +298,9 @@ public class OpcUaDataConnection : IDataConnection, IBrowsableDataConnection, IA
/// <inheritdoc />
public Task<BrowseChildrenResult> BrowseChildrenAsync(
string? parentNodeId,
string? continuationToken = null,
CancellationToken cancellationToken = default)
=> _client!.BrowseChildrenAsync(parentNodeId, cancellationToken);
=> _client!.BrowseChildrenAsync(parentNodeId, continuationToken, cancellationToken);
/// <inheritdoc />
public async Task<bool> WriteBatchAndWaitAsync(