diff --git a/src/Components/Ignitor/src/BlazorClient.cs b/src/Components/Ignitor/src/BlazorClient.cs index 818d41598b..df93faa3b3 100644 --- a/src/Components/Ignitor/src/BlazorClient.cs +++ b/src/Components/Ignitor/src/BlazorClient.cs @@ -56,7 +56,7 @@ namespace Ignitor private CancellableOperation NextAttachComponentReceived { get; set; } - internal CancellableOperation NextBatchReceived { get; set; } + private CancellableOperation NextBatchReceived { get; set; } private CancellableOperation NextErrorReceived { get; set; } @@ -396,7 +396,7 @@ namespace Ignitor NextJSInteropReceived?.Completion?.TrySetResult(null); } - protected virtual void OnRenderBatch(int id, byte[] data) + private void OnRenderBatch(int id, byte[] data) { var capturedBatch = new CapturedRenderBatch(id, data);