@@ -92,7 +92,7 @@ protected override void BuildRenderTree(Microsoft.AspNetCore.Components.Renderin
9292 protected override string ? FormatValueAsString ( TValue value ) { throw null ; }
9393 protected override bool TryParseValueFromString ( string ? value , [ System . Diagnostics . CodeAnalysis . MaybeNullAttribute ] out TValue result , [ System . Diagnostics . CodeAnalysis . NotNullWhenAttribute ( false ) ] out string ? validationErrorMessage ) { throw null ; }
9494 }
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
9696 {
9797 public InputSelect ( ) { }
9898 [ Microsoft . AspNetCore . Components . ParameterAttribute ]
@@ -106,11 +106,11 @@ public InputText() { }
106106 protected override void BuildRenderTree ( Microsoft . AspNetCore . Components . Rendering . RenderTreeBuilder builder ) { }
107107 protected override bool TryParseValueFromString ( string ? value , out string ? result , [ System . Diagnostics . CodeAnalysis . NotNullWhenAttribute ( false ) ] out string ? validationErrorMessage ) { throw null ; }
108108 }
109- public partial class InputTextArea : Microsoft . AspNetCore . Components . Forms . InputBase < string >
109+ public partial class InputTextArea : Microsoft . AspNetCore . Components . Forms . InputBase < string ? >
110110 {
111111 public InputTextArea ( ) { }
112112 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 ; }
114114 }
115115 public partial class ValidationMessage < TValue > : Microsoft . AspNetCore . Components . ComponentBase , System . IDisposable
116116 {
0 commit comments