@@ -114,7 +114,7 @@ public sealed partial class CascadingParameterAttribute : System.Attribute
114
114
public CascadingParameterAttribute ( ) { }
115
115
public string Name { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
116
116
}
117
- public partial class CascadingValue < T > : Microsoft . AspNetCore . Components . IComponent
117
+ public partial class CascadingValue < TValue > : Microsoft . AspNetCore . Components . IComponent
118
118
{
119
119
public CascadingValue ( ) { }
120
120
[ Microsoft . AspNetCore . Components . ParameterAttribute ]
@@ -124,7 +124,7 @@ public CascadingValue() { }
124
124
[ Microsoft . AspNetCore . Components . ParameterAttribute ]
125
125
public string Name { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
126
126
[ Microsoft . AspNetCore . Components . ParameterAttribute ]
127
- public T Value { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
127
+ public TValue Value { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
128
128
public void Attach ( Microsoft . AspNetCore . Components . RenderHandle renderHandle ) { }
129
129
public System . Threading . Tasks . Task SetParametersAsync ( Microsoft . AspNetCore . Components . ParameterView parameters ) { throw null ; }
130
130
}
@@ -188,17 +188,17 @@ public EventCallbackFactory() { }
188
188
public Microsoft . AspNetCore . Components . EventCallback Create ( object receiver , System . Func < object , System . Threading . Tasks . Task > callback ) { throw null ; }
189
189
public Microsoft . AspNetCore . Components . EventCallback Create ( object receiver , System . Func < System . Threading . Tasks . Task > callback ) { throw null ; }
190
190
[ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
191
- public Microsoft . AspNetCore . Components . EventCallback < T > CreateInferred < T > ( object receiver , System . Action < T > callback , T value ) { throw null ; }
191
+ public Microsoft . AspNetCore . Components . EventCallback < TValue > CreateInferred < TValue > ( object receiver , System . Action < TValue > callback , TValue value ) { throw null ; }
192
192
[ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
193
- public Microsoft . AspNetCore . Components . EventCallback < T > CreateInferred < T > ( object receiver , System . Func < T , System . Threading . Tasks . Task > callback , T value ) { throw null ; }
193
+ public Microsoft . AspNetCore . Components . EventCallback < TValue > CreateInferred < TValue > ( object receiver , System . Func < TValue , System . Threading . Tasks . Task > callback , TValue value ) { throw null ; }
194
194
[ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
195
- public Microsoft . AspNetCore . Components . EventCallback < T > Create < T > ( object receiver , Microsoft . AspNetCore . Components . EventCallback callback ) { throw null ; }
195
+ public Microsoft . AspNetCore . Components . EventCallback < TValue > Create < TValue > ( object receiver , Microsoft . AspNetCore . Components . EventCallback callback ) { throw null ; }
196
196
[ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
197
- public Microsoft . AspNetCore . Components . EventCallback < T > Create < T > ( object receiver , Microsoft . AspNetCore . Components . EventCallback < T > callback ) { throw null ; }
198
- public Microsoft . AspNetCore . Components . EventCallback < T > Create < T > ( object receiver , System . Action callback ) { throw null ; }
199
- public Microsoft . AspNetCore . Components . EventCallback < T > Create < T > ( object receiver , System . Action < T > callback ) { throw null ; }
200
- public Microsoft . AspNetCore . Components . EventCallback < T > Create < T > ( object receiver , System . Func < System . Threading . Tasks . Task > callback ) { throw null ; }
201
- public Microsoft . AspNetCore . Components . EventCallback < T > Create < T > ( object receiver , System . Func < T , System . Threading . Tasks . Task > callback ) { throw null ; }
197
+ public Microsoft . AspNetCore . Components . EventCallback < TValue > Create < TValue > ( object receiver , Microsoft . AspNetCore . Components . EventCallback < TValue > callback ) { throw null ; }
198
+ public Microsoft . AspNetCore . Components . EventCallback < TValue > Create < TValue > ( object receiver , System . Action callback ) { throw null ; }
199
+ public Microsoft . AspNetCore . Components . EventCallback < TValue > Create < TValue > ( object receiver , System . Action < TValue > callback ) { throw null ; }
200
+ public Microsoft . AspNetCore . Components . EventCallback < TValue > Create < TValue > ( object receiver , System . Func < System . Threading . Tasks . Task > callback ) { throw null ; }
201
+ public Microsoft . AspNetCore . Components . EventCallback < TValue > Create < TValue > ( object receiver , System . Func < TValue , System . Threading . Tasks . Task > callback ) { throw null ; }
202
202
}
203
203
public static partial class EventCallbackFactoryBinderExtensions
204
204
{
@@ -241,13 +241,13 @@ public readonly partial struct EventCallbackWorkItem
241
241
public System . Threading . Tasks . Task InvokeAsync ( object arg ) { throw null ; }
242
242
}
243
243
[ System . Runtime . InteropServices . StructLayoutAttribute ( System . Runtime . InteropServices . LayoutKind . Sequential ) ]
244
- public readonly partial struct EventCallback < T >
244
+ public readonly partial struct EventCallback < TValue >
245
245
{
246
246
private readonly object _dummy ;
247
- public static readonly Microsoft . AspNetCore . Components . EventCallback < T > Empty ;
247
+ public static readonly Microsoft . AspNetCore . Components . EventCallback < TValue > Empty ;
248
248
public EventCallback ( Microsoft . AspNetCore . Components . IHandleEvent receiver , System . MulticastDelegate @delegate ) { throw null ; }
249
249
public bool HasDelegate { get { throw null ; } }
250
- public System . Threading . Tasks . Task InvokeAsync ( T arg ) { throw null ; }
250
+ public System . Threading . Tasks . Task InvokeAsync ( TValue arg ) { throw null ; }
251
251
}
252
252
public partial interface IComponent
253
253
{
@@ -365,11 +365,11 @@ public readonly partial struct ParameterView
365
365
public static Microsoft . AspNetCore . Components . ParameterView Empty { get { throw null ; } }
366
366
public static Microsoft . AspNetCore . Components . ParameterView FromDictionary ( System . Collections . Generic . IDictionary < string , object > parameters ) { throw null ; }
367
367
public Microsoft . AspNetCore . Components . ParameterView . Enumerator GetEnumerator ( ) { throw null ; }
368
- public T GetValueOrDefault < T > ( string parameterName ) { throw null ; }
369
- public T GetValueOrDefault < T > ( string parameterName , T defaultValue ) { throw null ; }
368
+ public TValue GetValueOrDefault < TValue > ( string parameterName ) { throw null ; }
369
+ public TValue GetValueOrDefault < TValue > ( string parameterName , TValue defaultValue ) { throw null ; }
370
370
public void SetParameterProperties ( object target ) { }
371
371
public System . Collections . Generic . IReadOnlyDictionary < string , object > ToDictionary ( ) { throw null ; }
372
- public bool TryGetValue < T > ( string parameterName , out T result ) { throw null ; }
372
+ public bool TryGetValue < TValue > ( string parameterName , out TValue result ) { throw null ; }
373
373
[ System . Runtime . InteropServices . StructLayoutAttribute ( System . Runtime . InteropServices . LayoutKind . Sequential ) ]
374
374
public partial struct Enumerator
375
375
{
@@ -380,7 +380,7 @@ public partial struct Enumerator
380
380
}
381
381
}
382
382
public delegate void RenderFragment ( Microsoft . AspNetCore . Components . Rendering . RenderTreeBuilder builder ) ;
383
- public delegate Microsoft . AspNetCore . Components . RenderFragment RenderFragment < T > ( T value ) ;
383
+ public delegate Microsoft . AspNetCore . Components . RenderFragment RenderFragment < TValue > ( TValue value ) ;
384
384
[ System . Runtime . InteropServices . StructLayoutAttribute ( System . Runtime . InteropServices . LayoutKind . Sequential ) ]
385
385
public readonly partial struct RenderHandle
386
386
{
@@ -466,7 +466,7 @@ public FieldChangedEventArgs(in Microsoft.AspNetCore.Components.Forms.FieldIdent
466
466
public FieldIdentifier ( object model , string fieldName ) { throw null ; }
467
467
public string FieldName { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
468
468
public object Model { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
469
- public static Microsoft . AspNetCore . Components . Forms . FieldIdentifier Create < T > ( System . Linq . Expressions . Expression < System . Func < T > > accessor ) { throw null ; }
469
+ public static Microsoft . AspNetCore . Components . Forms . FieldIdentifier Create < TField > ( System . Linq . Expressions . Expression < System . Func < TField > > accessor ) { throw null ; }
470
470
public bool Equals ( Microsoft . AspNetCore . Components . Forms . FieldIdentifier otherIdentifier ) { throw null ; }
471
471
public override bool Equals ( object obj ) { throw null ; }
472
472
public override int GetHashCode ( ) { throw null ; }
@@ -556,13 +556,13 @@ public void AddAttribute(int sequence, string name, bool value) { }
556
556
public void AddAttribute ( int sequence , string name , System . MulticastDelegate value ) { }
557
557
public void AddAttribute ( int sequence , string name , object value ) { }
558
558
public void AddAttribute ( int sequence , string name , string value ) { }
559
- public void AddAttribute < T > ( int sequence , string name , Microsoft . AspNetCore . Components . EventCallback < T > value ) { }
559
+ public void AddAttribute < TArgument > ( int sequence , string name , Microsoft . AspNetCore . Components . EventCallback < TArgument > value ) { }
560
560
public void AddComponentReferenceCapture ( int sequence , System . Action < object > componentReferenceCaptureAction ) { }
561
561
public void AddContent ( int sequence , Microsoft . AspNetCore . Components . MarkupString markupContent ) { }
562
562
public void AddContent ( int sequence , Microsoft . AspNetCore . Components . RenderFragment fragment ) { }
563
563
public void AddContent ( int sequence , object textContent ) { }
564
564
public void AddContent ( int sequence , string textContent ) { }
565
- public void AddContent < T > ( int sequence , Microsoft . AspNetCore . Components . RenderFragment < T > fragment , T value ) { }
565
+ public void AddContent < TValue > ( int sequence , Microsoft . AspNetCore . Components . RenderFragment < TValue > fragment , TValue value ) { }
566
566
public void AddElementReferenceCapture ( int sequence , System . Action < Microsoft . AspNetCore . Components . ElementReference > elementReferenceCaptureAction ) { }
567
567
public void AddMarkupContent ( int sequence , string markupContent ) { }
568
568
public void AddMultipleAttributes ( int sequence , System . Collections . Generic . IEnumerable < System . Collections . Generic . KeyValuePair < string , object > > attributes ) { }
0 commit comments