@@ -419,8 +419,10 @@ public event System.EventHandler<Microsoft.AspNetCore.Components.Forms.Validatio
419
419
public Microsoft . AspNetCore . Components . Forms . FieldIdentifier Field ( string fieldName ) { throw null ; }
420
420
public System . Collections . Generic . IEnumerable < string > GetValidationMessages ( ) { throw null ; }
421
421
public System . Collections . Generic . IEnumerable < string > GetValidationMessages ( Microsoft . AspNetCore . Components . Forms . FieldIdentifier fieldIdentifier ) { throw null ; }
422
+ public System . Collections . Generic . IEnumerable < string > GetValidationMessages ( System . Linq . Expressions . Expression < System . Func < object > > accessor ) { throw null ; }
422
423
public bool IsModified ( ) { throw null ; }
423
424
public bool IsModified ( in Microsoft . AspNetCore . Components . Forms . FieldIdentifier fieldIdentifier ) { throw null ; }
425
+ public bool IsModified ( System . Linq . Expressions . Expression < System . Func < object > > accessor ) { throw null ; }
424
426
public void MarkAsUnmodified ( ) { }
425
427
public void MarkAsUnmodified ( in Microsoft . AspNetCore . Components . Forms . FieldIdentifier fieldIdentifier ) { }
426
428
public void NotifyFieldChanged ( in Microsoft . AspNetCore . Components . Forms . FieldIdentifier fieldIdentifier ) { }
@@ -431,24 +433,20 @@ public static partial class EditContextDataAnnotationsExtensions
431
433
{
432
434
public static Microsoft . AspNetCore . Components . Forms . EditContext AddDataAnnotationsValidation ( this Microsoft . AspNetCore . Components . Forms . EditContext editContext ) { throw null ; }
433
435
}
434
- public static partial class EditContextExpressionExtensions
436
+ public sealed partial class FieldChangedEventArgs : System . EventArgs
435
437
{
436
- public static System . Collections . Generic . IEnumerable < string > GetValidationMessages ( this Microsoft . AspNetCore . Components . Forms . EditContext editContext , System . Linq . Expressions . Expression < System . Func < object > > accessor ) { throw null ; }
437
- public static bool IsModified ( this Microsoft . AspNetCore . Components . Forms . EditContext editContext , System . Linq . Expressions . Expression < System . Func < object > > accessor ) { throw null ; }
438
- }
439
- public sealed partial class FieldChangedEventArgs
440
- {
441
- internal FieldChangedEventArgs ( ) { }
438
+ public FieldChangedEventArgs ( in Microsoft . AspNetCore . Components . Forms . FieldIdentifier fieldIdentifier ) { }
442
439
public Microsoft . AspNetCore . Components . Forms . FieldIdentifier FieldIdentifier { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
443
440
}
444
441
[ System . Runtime . InteropServices . StructLayoutAttribute ( System . Runtime . InteropServices . LayoutKind . Sequential ) ]
445
- public readonly partial struct FieldIdentifier
442
+ public readonly partial struct FieldIdentifier : System . IEquatable < Microsoft . AspNetCore . Components . Forms . FieldIdentifier >
446
443
{
447
444
private readonly object _dummy ;
448
445
public FieldIdentifier ( object model , string fieldName ) { throw null ; }
449
446
public string FieldName { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
450
447
public object Model { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
451
448
public static Microsoft . AspNetCore . Components . Forms . FieldIdentifier Create < T > ( System . Linq . Expressions . Expression < System . Func < T > > accessor ) { throw null ; }
449
+ public bool Equals ( Microsoft . AspNetCore . Components . Forms . FieldIdentifier otherIdentifier ) { throw null ; }
452
450
public override bool Equals ( object obj ) { throw null ; }
453
451
public override int GetHashCode ( ) { throw null ; }
454
452
}
@@ -457,24 +455,23 @@ public sealed partial class ValidationMessageStore
457
455
public ValidationMessageStore ( Microsoft . AspNetCore . Components . Forms . EditContext editContext ) { }
458
456
public System . Collections . Generic . IEnumerable < string > this [ Microsoft . AspNetCore . Components . Forms . FieldIdentifier fieldIdentifier ] { get { throw null ; } }
459
457
public System . Collections . Generic . IEnumerable < string > this [ System . Linq . Expressions . Expression < System . Func < object > > accessor ] { get { throw null ; } }
458
+ public void Add ( in Microsoft . AspNetCore . Components . Forms . FieldIdentifier fieldIdentifier , System . Collections . Generic . IEnumerable < string > messages ) { }
460
459
public void Add ( in Microsoft . AspNetCore . Components . Forms . FieldIdentifier fieldIdentifier , string message ) { }
461
- public void AddRange ( in Microsoft . AspNetCore . Components . Forms . FieldIdentifier fieldIdentifier , System . Collections . Generic . IEnumerable < string > messages ) { }
460
+ public void Add ( System . Linq . Expressions . Expression < System . Func < object > > accessor , System . Collections . Generic . IEnumerable < string > messages ) { }
461
+ public void Add ( System . Linq . Expressions . Expression < System . Func < object > > accessor , string message ) { }
462
462
public void Clear ( ) { }
463
463
public void Clear ( in Microsoft . AspNetCore . Components . Forms . FieldIdentifier fieldIdentifier ) { }
464
+ public void Clear ( System . Linq . Expressions . Expression < System . Func < object > > accessor ) { }
464
465
}
465
- public static partial class ValidationMessageStoreExpressionExtensions
466
- {
467
- public static void Add ( this Microsoft . AspNetCore . Components . Forms . ValidationMessageStore store , System . Linq . Expressions . Expression < System . Func < object > > accessor , string message ) { }
468
- public static void AddRange ( this Microsoft . AspNetCore . Components . Forms . ValidationMessageStore store , System . Linq . Expressions . Expression < System . Func < object > > accessor , System . Collections . Generic . IEnumerable < string > messages ) { }
469
- public static void Clear ( this Microsoft . AspNetCore . Components . Forms . ValidationMessageStore store , System . Linq . Expressions . Expression < System . Func < object > > accessor ) { }
470
- }
471
- public sealed partial class ValidationRequestedEventArgs
466
+ public sealed partial class ValidationRequestedEventArgs : System . EventArgs
472
467
{
473
- internal ValidationRequestedEventArgs ( ) { }
468
+ public static readonly new Microsoft . AspNetCore . Components . Forms . ValidationRequestedEventArgs Empty ;
469
+ public ValidationRequestedEventArgs ( ) { }
474
470
}
475
- public sealed partial class ValidationStateChangedEventArgs
471
+ public sealed partial class ValidationStateChangedEventArgs : System . EventArgs
476
472
{
477
- internal ValidationStateChangedEventArgs ( ) { }
473
+ public static readonly new Microsoft . AspNetCore . Components . Forms . ValidationStateChangedEventArgs Empty ;
474
+ public ValidationStateChangedEventArgs ( ) { }
478
475
}
479
476
}
480
477
namespace Microsoft . AspNetCore . Components . Rendering
0 commit comments