@@ -61,7 +61,7 @@ protected InputBase() { }
61
61
protected TValue CurrentValue { get { throw null ; } set { } }
62
62
protected string ? CurrentValueAsString { get { throw null ; } set { } }
63
63
protected Microsoft . AspNetCore . Components . Forms . EditContext EditContext { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
64
- protected Microsoft . AspNetCore . Components . Forms . FieldIdentifier FieldIdentifier { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
64
+ protected internal Microsoft . AspNetCore . Components . Forms . FieldIdentifier FieldIdentifier { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
65
65
[ Microsoft . AspNetCore . Components . ParameterAttribute ]
66
66
[ System . Diagnostics . CodeAnalysis . MaybeNullAttribute ]
67
67
[ System . Diagnostics . CodeAnalysis . AllowNullAttribute ]
@@ -71,7 +71,7 @@ protected InputBase() { }
71
71
[ Microsoft . AspNetCore . Components . ParameterAttribute ]
72
72
public System . Linq . Expressions . Expression < System . Func < TValue > > ? ValueExpression { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
73
73
protected virtual void Dispose ( bool disposing ) { }
74
- protected virtual string ? FormatValueAsString ( TValue value ) { throw null ; }
74
+ protected virtual string ? FormatValueAsString ( [ System . Diagnostics . CodeAnalysis . AllowNullAttribute ] TValue value ) { throw null ; }
75
75
public override System . Threading . Tasks . Task SetParametersAsync ( Microsoft . AspNetCore . Components . ParameterView parameters ) { throw null ; }
76
76
void System . IDisposable . Dispose ( ) { }
77
77
protected abstract bool TryParseValueFromString ( string ? value , [ System . Diagnostics . CodeAnalysis . MaybeNullAttribute ] out TValue result , [ System . Diagnostics . CodeAnalysis . NotNullWhenAttribute ( false ) ] out string ? validationErrorMessage ) ;
@@ -88,7 +88,7 @@ public InputDate() { }
88
88
[ Microsoft . AspNetCore . Components . ParameterAttribute ]
89
89
public string ParsingErrorMessage { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
90
90
protected override void BuildRenderTree ( Microsoft . AspNetCore . Components . Rendering . RenderTreeBuilder builder ) { }
91
- protected override string FormatValueAsString ( TValue value ) { throw null ; }
91
+ protected override string FormatValueAsString ( [ System . Diagnostics . CodeAnalysis . AllowNullAttribute ] TValue value ) { throw null ; }
92
92
protected override bool TryParseValueFromString ( string ? value , [ System . Diagnostics . CodeAnalysis . MaybeNullAttribute ] out TValue result , [ System . Diagnostics . CodeAnalysis . NotNullWhenAttribute ( false ) ] out string ? validationErrorMessage ) { throw null ; }
93
93
}
94
94
public partial class InputNumber < TValue > : Microsoft . AspNetCore . Components . Forms . InputBase < TValue >
@@ -97,9 +97,34 @@ public InputNumber() { }
97
97
[ Microsoft . AspNetCore . Components . ParameterAttribute ]
98
98
public string ParsingErrorMessage { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
99
99
protected override void BuildRenderTree ( Microsoft . AspNetCore . Components . Rendering . RenderTreeBuilder builder ) { }
100
- protected override string ? FormatValueAsString ( TValue value ) { throw null ; }
100
+ protected override string ? FormatValueAsString ( [ System . Diagnostics . CodeAnalysis . AllowNullAttribute ] TValue value ) { throw null ; }
101
101
protected override bool TryParseValueFromString ( string ? value , [ System . Diagnostics . CodeAnalysis . MaybeNullAttribute ] out TValue result , [ System . Diagnostics . CodeAnalysis . NotNullWhenAttribute ( false ) ] out string ? validationErrorMessage ) { throw null ; }
102
102
}
103
+ public partial class InputRadioGroup < TValue > : Microsoft . AspNetCore . Components . Forms . InputBase < TValue >
104
+ {
105
+ public InputRadioGroup ( ) { }
106
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
107
+ public Microsoft . AspNetCore . Components . RenderFragment ? ChildContent { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
108
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
109
+ public string ? Name { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
110
+ protected override void BuildRenderTree ( Microsoft . AspNetCore . Components . Rendering . RenderTreeBuilder builder ) { }
111
+ protected override void OnParametersSet ( ) { }
112
+ protected override bool TryParseValueFromString ( string ? value , [ System . Diagnostics . CodeAnalysis . MaybeNullAttribute ] out TValue result , [ System . Diagnostics . CodeAnalysis . NotNullWhenAttribute ( false ) ] out string ? validationErrorMessage ) { throw null ; }
113
+ }
114
+ public partial class InputRadio < TValue > : Microsoft . AspNetCore . Components . ComponentBase
115
+ {
116
+ public InputRadio ( ) { }
117
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ( CaptureUnmatchedValues = true ) ]
118
+ public System . Collections . Generic . IReadOnlyDictionary < string , object > ? AdditionalAttributes { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
119
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
120
+ public string ? Name { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
121
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
122
+ [ System . Diagnostics . CodeAnalysis . MaybeNullAttribute ]
123
+ [ System . Diagnostics . CodeAnalysis . AllowNullAttribute ]
124
+ public TValue Value { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
125
+ protected override void BuildRenderTree ( Microsoft . AspNetCore . Components . Rendering . RenderTreeBuilder builder ) { }
126
+ protected override void OnParametersSet ( ) { }
127
+ }
103
128
public partial class InputSelect < TValue > : Microsoft . AspNetCore . Components . Forms . InputBase < TValue >
104
129
{
105
130
public InputSelect ( ) { }
0 commit comments