@@ -6,6 +6,8 @@ namespace Microsoft.AspNetCore.Components
6
6
[ System . Runtime . InteropServices . StructLayoutAttribute ( System . Runtime . InteropServices . LayoutKind . Sequential ) ]
7
7
internal partial struct ServerComponent
8
8
{
9
+ private object _dummy ;
10
+ private int _dummyPrimitive ;
9
11
public ServerComponent ( int sequence , string assemblyName , string typeName , System . Guid invocationId ) { throw null ; }
10
12
public string AssemblyName { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
11
13
public System . Guid InvocationId { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
@@ -27,6 +29,8 @@ public override void Write(System.Text.Json.Utf8JsonWriter writer, Microsoft.Asp
27
29
[ System . Runtime . InteropServices . StructLayoutAttribute ( System . Runtime . InteropServices . LayoutKind . Sequential ) ]
28
30
internal partial struct ServerComponentMarker
29
31
{
32
+ private object _dummy ;
33
+ private int _dummyPrimitive ;
30
34
public string Descriptor { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
31
35
public string PrerenderId { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
32
36
public int ? Sequence { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
@@ -151,6 +155,8 @@ protected override void ProcessPendingRender() { }
151
155
[ System . Runtime . InteropServices . StructLayoutAttribute ( System . Runtime . InteropServices . LayoutKind . Sequential ) ]
152
156
internal readonly partial struct UnacknowledgedRenderBatch
153
157
{
158
+ private readonly object _dummy ;
159
+ private readonly int _dummyPrimitive ;
154
160
public UnacknowledgedRenderBatch ( long batchId , Microsoft . AspNetCore . Components . Server . Circuits . ArrayBuilder < byte > data , System . Threading . Tasks . TaskCompletionSource < object > completionSource , Microsoft . Extensions . Internal . ValueStopwatch valueStopwatch ) { throw null ; }
155
161
public long BatchId { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
156
162
public System . Threading . Tasks . TaskCompletionSource < object > CompletionSource { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
@@ -217,6 +223,7 @@ public void SetCircuitUser(System.Security.Claims.ClaimsPrincipal user) { }
217
223
[ System . Runtime . InteropServices . StructLayoutAttribute ( System . Runtime . InteropServices . LayoutKind . Sequential ) ]
218
224
internal readonly partial struct CircuitId : System . IEquatable < Microsoft . AspNetCore . Components . Server . Circuits . CircuitId >
219
225
{
226
+ private readonly object _dummy ;
220
227
public CircuitId ( string secret , string id ) { throw null ; }
221
228
public string Id { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
222
229
public string Secret { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
@@ -291,8 +298,9 @@ namespace Microsoft.Extensions.Internal
291
298
[ System . Runtime . InteropServices . StructLayoutAttribute ( System . Runtime . InteropServices . LayoutKind . Sequential ) ]
292
299
internal partial struct ValueStopwatch
293
300
{
301
+ private int _dummyPrimitive ;
294
302
public bool IsActive { get { throw null ; } }
295
303
public System . TimeSpan GetElapsedTime ( ) { throw null ; }
296
304
public static Microsoft . Extensions . Internal . ValueStopwatch StartNew ( ) { throw null ; }
297
305
}
298
- }
306
+ }
0 commit comments