@@ -92,7 +92,7 @@ protected override void BuildRenderTree(Microsoft.AspNetCore.Components.Renderin
92
92
protected override string ? FormatValueAsString ( TValue value ) { throw null ; }
93
93
protected override bool TryParseValueFromString ( string ? value , [ System . Diagnostics . CodeAnalysis . MaybeNullAttribute ] out TValue result , [ System . Diagnostics . CodeAnalysis . NotNullWhenAttribute ( false ) ] out string ? validationErrorMessage ) { throw null ; }
94
94
}
95
- public partial class InputSelect < TValue > : Microsoft . AspNetCore . Components . Forms . InputBase < TValue >
95
+ public partial class InputSelect < TValue > : Microsoft . AspNetCore . Components . Forms . InputBase < TValue > where TValue : notnull
96
96
{
97
97
public InputSelect ( ) { }
98
98
[ Microsoft . AspNetCore . Components . ParameterAttribute ]
@@ -106,11 +106,11 @@ public InputText() { }
106
106
protected override void BuildRenderTree ( Microsoft . AspNetCore . Components . Rendering . RenderTreeBuilder builder ) { }
107
107
protected override bool TryParseValueFromString ( string ? value , out string ? result , [ System . Diagnostics . CodeAnalysis . NotNullWhenAttribute ( false ) ] out string ? validationErrorMessage ) { throw null ; }
108
108
}
109
- public partial class InputTextArea : Microsoft . AspNetCore . Components . Forms . InputBase < string >
109
+ public partial class InputTextArea : Microsoft . AspNetCore . Components . Forms . InputBase < string ? >
110
110
{
111
111
public InputTextArea ( ) { }
112
112
protected override void BuildRenderTree ( Microsoft . AspNetCore . Components . Rendering . RenderTreeBuilder builder ) { }
113
- protected override bool TryParseValueFromString ( string ? value , [ System . Diagnostics . CodeAnalysis . MaybeNullAttribute ] out string result , [ System . Diagnostics . CodeAnalysis . NotNullWhenAttribute ( false ) ] out string ? validationErrorMessage ) { throw null ; }
113
+ protected override bool TryParseValueFromString ( string ? value , out string ? result , [ System . Diagnostics . CodeAnalysis . NotNullWhenAttribute ( false ) ] out string ? validationErrorMessage ) { throw null ; }
114
114
}
115
115
public partial class ValidationMessage < TValue > : Microsoft . AspNetCore . Components . ComponentBase , System . IDisposable
116
116
{
0 commit comments