Improve docs coverage and refresh profiling parser artifacts

Add domain-specific XML documentation across src server components to satisfy CommentChecker, and update dotTrace parsing outputs used for diagnostics.
This commit is contained in:
Joseph Doherty
2026-03-14 04:06:04 -04:00
parent 46ead5ea9f
commit 5de4962bd3
46 changed files with 761 additions and 10488 deletions

View File

@@ -27,6 +27,7 @@ public readonly record struct RaftMembershipChange(RaftMembershipChangeType Type
/// Parses a log entry command string back into a membership change.
/// Returns null if the command is not a membership change.
/// </summary>
/// <param name="command">Serialized membership command from a replicated RAFT log entry.</param>
public static RaftMembershipChange? TryParse(string command)
{
var colonIndex = command.IndexOf(':');