@@ -275,9 +275,131 @@ public static partial class EditContextFieldClassExtensions
275
275
public static string FieldClass ( this Microsoft . AspNetCore . Components . Forms . EditContext editContext , in Microsoft . AspNetCore . Components . Forms . FieldIdentifier fieldIdentifier ) { throw null ; }
276
276
public static string FieldClass < TField > ( this Microsoft . AspNetCore . Components . Forms . EditContext editContext , System . Linq . Expressions . Expression < System . Func < TField > > accessor ) { throw null ; }
277
277
}
278
+ public partial class EditForm : Microsoft . AspNetCore . Components . ComponentBase
279
+ {
280
+ public EditForm ( ) { }
281
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ( CaptureUnmatchedValues = true ) ]
282
+ public System . Collections . Generic . IReadOnlyDictionary < string , object > AdditionalAttributes { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
283
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
284
+ public Microsoft . AspNetCore . Components . RenderFragment < Microsoft . AspNetCore . Components . Forms . EditContext > ChildContent { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
285
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
286
+ public Microsoft . AspNetCore . Components . Forms . EditContext EditContext { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
287
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
288
+ public object Model { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
289
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
290
+ public Microsoft . AspNetCore . Components . EventCallback < Microsoft . AspNetCore . Components . Forms . EditContext > OnInvalidSubmit { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
291
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
292
+ public Microsoft . AspNetCore . Components . EventCallback < Microsoft . AspNetCore . Components . Forms . EditContext > OnSubmit { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
293
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
294
+ public Microsoft . AspNetCore . Components . EventCallback < Microsoft . AspNetCore . Components . Forms . EditContext > OnValidSubmit { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
295
+ protected override void BuildRenderTree ( Microsoft . AspNetCore . Components . RenderTree . RenderTreeBuilder builder ) { }
296
+ protected override void OnParametersSet ( ) { }
297
+ }
298
+ public abstract partial class InputBase < T > : Microsoft . AspNetCore . Components . ComponentBase
299
+ {
300
+ protected InputBase ( ) { }
301
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ( CaptureUnmatchedValues = true ) ]
302
+ public System . Collections . Generic . IReadOnlyDictionary < string , object > AdditionalAttributes { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
303
+ protected string CssClass { get { throw null ; } }
304
+ protected T CurrentValue { get { throw null ; } set { } }
305
+ protected string CurrentValueAsString { get { throw null ; } set { } }
306
+ protected Microsoft . AspNetCore . Components . Forms . EditContext EditContext { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
307
+ protected string FieldClass { get { throw null ; } }
308
+ protected Microsoft . AspNetCore . Components . Forms . FieldIdentifier FieldIdentifier { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
309
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
310
+ public T Value { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
311
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
312
+ public Microsoft . AspNetCore . Components . EventCallback < T > ValueChanged { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
313
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
314
+ public System . Linq . Expressions . Expression < System . Func < T > > ValueExpression { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
315
+ protected virtual string FormatValueAsString ( T value ) { throw null ; }
316
+ public override System . Threading . Tasks . Task SetParametersAsync ( Microsoft . AspNetCore . Components . ParameterCollection parameters ) { throw null ; }
317
+ protected abstract bool TryParseValueFromString ( string value , out T result , out string validationErrorMessage ) ;
318
+ }
319
+ public partial class InputCheckbox : Microsoft . AspNetCore . Components . Forms . InputBase < bool >
320
+ {
321
+ public InputCheckbox ( ) { }
322
+ protected override void BuildRenderTree ( Microsoft . AspNetCore . Components . RenderTree . RenderTreeBuilder builder ) { }
323
+ protected override bool TryParseValueFromString ( string value , out bool result , out string validationErrorMessage ) { throw null ; }
324
+ }
325
+ public partial class InputDate < T > : Microsoft . AspNetCore . Components . Forms . InputBase < T >
326
+ {
327
+ public InputDate ( ) { }
328
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
329
+ public string ParsingErrorMessage { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
330
+ protected override void BuildRenderTree ( Microsoft . AspNetCore . Components . RenderTree . RenderTreeBuilder builder ) { }
331
+ protected override string FormatValueAsString ( T value ) { throw null ; }
332
+ protected override bool TryParseValueFromString ( string value , out T result , out string validationErrorMessage ) { throw null ; }
333
+ }
334
+ public partial class InputNumber < T > : Microsoft . AspNetCore . Components . Forms . InputBase < T >
335
+ {
336
+ public InputNumber ( ) { }
337
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
338
+ public string ParsingErrorMessage { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
339
+ protected override void BuildRenderTree ( Microsoft . AspNetCore . Components . RenderTree . RenderTreeBuilder builder ) { }
340
+ protected override string FormatValueAsString ( T value ) { throw null ; }
341
+ protected override bool TryParseValueFromString ( string value , out T result , out string validationErrorMessage ) { throw null ; }
342
+ }
343
+ public partial class InputSelect < T > : Microsoft . AspNetCore . Components . Forms . InputBase < T >
344
+ {
345
+ public InputSelect ( ) { }
346
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
347
+ public Microsoft . AspNetCore . Components . RenderFragment ChildContent { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
348
+ protected override void BuildRenderTree ( Microsoft . AspNetCore . Components . RenderTree . RenderTreeBuilder builder ) { }
349
+ protected override bool TryParseValueFromString ( string value , out T result , out string validationErrorMessage ) { throw null ; }
350
+ }
351
+ public partial class InputText : Microsoft . AspNetCore . Components . Forms . InputBase < string >
352
+ {
353
+ public InputText ( ) { }
354
+ protected override void BuildRenderTree ( Microsoft . AspNetCore . Components . RenderTree . RenderTreeBuilder builder ) { }
355
+ protected override bool TryParseValueFromString ( string value , out string result , out string validationErrorMessage ) { throw null ; }
356
+ }
357
+ public partial class InputTextArea : Microsoft . AspNetCore . Components . Forms . InputBase < string >
358
+ {
359
+ public InputTextArea ( ) { }
360
+ protected override void BuildRenderTree ( Microsoft . AspNetCore . Components . RenderTree . RenderTreeBuilder builder ) { }
361
+ protected override bool TryParseValueFromString ( string value , out string result , out string validationErrorMessage ) { throw null ; }
362
+ }
363
+ public partial class ValidationMessage < T > : Microsoft . AspNetCore . Components . ComponentBase , System . IDisposable
364
+ {
365
+ public ValidationMessage ( ) { }
366
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ( CaptureUnmatchedValues = true ) ]
367
+ public System . Collections . Generic . IReadOnlyDictionary < string , object > AdditionalAttributes { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
368
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
369
+ public System . Linq . Expressions . Expression < System . Func < T > > For { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
370
+ protected override void BuildRenderTree ( Microsoft . AspNetCore . Components . RenderTree . RenderTreeBuilder builder ) { }
371
+ protected override void OnParametersSet ( ) { }
372
+ void System . IDisposable . Dispose ( ) { }
373
+ }
374
+ public partial class ValidationSummary : Microsoft . AspNetCore . Components . ComponentBase , System . IDisposable
375
+ {
376
+ public ValidationSummary ( ) { }
377
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ( CaptureUnmatchedValues = true ) ]
378
+ public System . Collections . Generic . IReadOnlyDictionary < string , object > AdditionalAttributes { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
379
+ protected override void BuildRenderTree ( Microsoft . AspNetCore . Components . RenderTree . RenderTreeBuilder builder ) { }
380
+ protected override void OnParametersSet ( ) { }
381
+ void System . IDisposable . Dispose ( ) { }
382
+ }
278
383
}
279
384
namespace Microsoft . AspNetCore . Components . Routing
280
385
{
386
+ public partial class NavLink : Microsoft . AspNetCore . Components . ComponentBase , System . IDisposable
387
+ {
388
+ public NavLink ( ) { }
389
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
390
+ public string ActiveClass { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
391
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ( CaptureUnmatchedValues = true ) ]
392
+ public System . Collections . Generic . IReadOnlyDictionary < string , object > AdditionalAttributes { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
393
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
394
+ public Microsoft . AspNetCore . Components . RenderFragment ChildContent { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
395
+ protected string CssClass { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
396
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
397
+ public Microsoft . AspNetCore . Components . Routing . NavLinkMatch Match { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
398
+ protected override void BuildRenderTree ( Microsoft . AspNetCore . Components . RenderTree . RenderTreeBuilder builder ) { }
399
+ public void Dispose ( ) { }
400
+ protected override void OnInitialized ( ) { }
401
+ protected override void OnParametersSet ( ) { }
402
+ }
281
403
public enum NavLinkMatch
282
404
{
283
405
Prefix = 0 ,
0 commit comments