docs: backfill XML documentation across 756 files
v2-ci / build (push) Failing after 1m43s
v2-ci / unit-tests (tests/Core/ZB.MOM.WW.OtOpcUa.Cluster.Tests) (push) Has been skipped
v2-ci / unit-tests (tests/Server/ZB.MOM.WW.OtOpcUa.ControlPlane.Tests) (push) Has been skipped
v2-ci / unit-tests (tests/Server/ZB.MOM.WW.OtOpcUa.OpcUaServer.Tests) (push) Has been skipped
v2-ci / unit-tests (tests/Server/ZB.MOM.WW.OtOpcUa.Runtime.Tests) (push) Has been skipped
v2-ci / unit-tests (tests/Server/ZB.MOM.WW.OtOpcUa.Security.Tests) (push) Has been skipped
v2-ci / integration (tests/Server/ZB.MOM.WW.OtOpcUa.Host.IntegrationTests) (push) Has been skipped
v2-ci / integration (tests/Server/ZB.MOM.WW.OtOpcUa.OpcUaServer.IntegrationTests) (push) Has been skipped

Adds <summary>, <param>, <typeparam>, and <inheritdoc/> tags to public
members surfaced by commentchecker — resolves 5,847 of 5,869 issues
(99.6%) across three /fixdocs passes.
This commit is contained in:
Joseph Doherty
2026-05-28 08:10:17 -04:00
parent f9fc7dd2e1
commit 64e3fbe035
756 changed files with 9876 additions and 96 deletions
@@ -34,6 +34,7 @@ public sealed class AbCipDriverWholeUdtReadTests
new AbCipStructureMember("Torque", AbCipDataType.Real), // offset 4
]);
/// <summary>Verifies that multiple members of the same UDT trigger only one parent read.</summary>
[Fact]
public async Task Two_members_of_same_udt_trigger_one_parent_read()
{
@@ -53,6 +54,7 @@ public sealed class AbCipDriverWholeUdtReadTests
factory.Tags["Motor"].ReadCount.ShouldBe(1);
}
/// <summary>Verifies that each UDT member is decoded at its correct offset.</summary>
[Fact]
public async Task Each_member_decodes_at_its_own_offset()
{
@@ -78,6 +80,7 @@ public sealed class AbCipDriverWholeUdtReadTests
snapshots[1].Value.ShouldBe(9.5f);
}
/// <summary>Verifies that parent read failure marks all grouped members as Bad.</summary>
[Fact]
public async Task Parent_read_failure_stamps_every_grouped_member_Bad()
{
@@ -97,6 +100,7 @@ public sealed class AbCipDriverWholeUdtReadTests
snapshots[1].Value.ShouldBeNull();
}
/// <summary>Verifies that mixed batches group UDT members and fall back to atomic reads.</summary>
[Fact]
public async Task Mixed_batch_groups_udt_and_falls_back_atomics()
{
@@ -116,6 +120,7 @@ public sealed class AbCipDriverWholeUdtReadTests
factory.Tags["PlainDint"].ReadCount.ShouldBe(1);
}
/// <summary>Verifies that a single UDT member uses the per-tag read path rather than grouping.</summary>
[Fact]
public async Task Single_member_of_Udt_uses_per_tag_read_path()
{