Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,7 @@ public class CancelInvocationMessage : HubInvocationMessage
public CancelInvocationMessage(string invocationId) : base(invocationId)
{
}

/// <inheritdoc cref="HubInvocationMessage.InvocationId" />
public new string InvocationId => base.InvocationId!;
Copy link
Preview

Copilot AI Aug 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The XML documentation comment should be more descriptive than just inheriting from the base class. Since this property provides stronger null safety guarantees than the base property, the documentation should explain this improvement and include proper XML doc tags like <summary> instead of just <inheritdoc cref="..."/>.

Copilot uses AI. Check for mistakes.

}
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
#nullable enable
Microsoft.AspNetCore.SignalR.Protocol.CancelInvocationMessage.InvocationId.get -> string!
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
#nullable enable
Microsoft.AspNetCore.SignalR.Protocol.CancelInvocationMessage.InvocationId.get -> string!
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
#nullable enable
Microsoft.AspNetCore.SignalR.Protocol.CancelInvocationMessage.InvocationId.get -> string!
Loading