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