@@ -587,3 +587,60 @@ public void Dispose() { }
587
587
public System . Threading . Tasks . Task SetParametersAsync ( Microsoft . AspNetCore . Components . ParameterView parameters ) { throw null ; }
588
588
}
589
589
}
590
+ namespace Microsoft . AspNetCore . Components . Virtualization
591
+ {
592
+ public sealed partial class InfiniteScroll < TItem > : Microsoft . AspNetCore . Components . Virtualization . VirtualizeBase < TItem >
593
+ {
594
+ public InfiniteScroll ( ) { }
595
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
596
+ public Microsoft . AspNetCore . Components . RenderFragment ? InfiniteScrollFooter { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
597
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
598
+ public Microsoft . AspNetCore . Components . RenderFragment < TItem > Item { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
599
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
600
+ public int ItemBatchSize { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
601
+ protected override int ItemCount { get { throw null ; } }
602
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
603
+ public System . Func < System . Range , System . Threading . Tasks . Task < System . Collections . Generic . IEnumerable < TItem > > > ItemsProvider { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
604
+ protected override System . Collections . Generic . IEnumerable < Microsoft . AspNetCore . Components . RenderFragment > GetItems ( int start , int count ) { throw null ; }
605
+ }
606
+ public partial interface IVirtualizationHelper : System . IAsyncDisposable
607
+ {
608
+ event System . EventHandler < Microsoft . AspNetCore . Components . Virtualization . SpacerEventArgs > BottomSpacerVisible ;
609
+ event System . EventHandler < Microsoft . AspNetCore . Components . Virtualization . SpacerEventArgs > TopSpacerVisible ;
610
+ System . Threading . Tasks . ValueTask InitAsync ( Microsoft . AspNetCore . Components . ElementReference topSpacer , Microsoft . AspNetCore . Components . ElementReference bottomSpacer ) ;
611
+ }
612
+ public partial interface IVirtualizationService
613
+ {
614
+ Microsoft . AspNetCore . Components . Virtualization . IVirtualizationHelper CreateVirtualizationHelper ( ) ;
615
+ }
616
+ public partial class SpacerEventArgs : System . EventArgs
617
+ {
618
+ public SpacerEventArgs ( float spacerSize , float containerSize ) { }
619
+ public float ContainerSize { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
620
+ public float SpacerSize { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
621
+ }
622
+ public abstract partial class VirtualizeBase < TItem > : Microsoft . AspNetCore . Components . ComponentBase , System . IAsyncDisposable
623
+ {
624
+ protected VirtualizeBase ( ) { }
625
+ protected abstract int ItemCount { get ; }
626
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
627
+ public float ItemSize { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
628
+ protected override void BuildRenderTree ( Microsoft . AspNetCore . Components . Rendering . RenderTreeBuilder builder ) { }
629
+ [ System . Diagnostics . DebuggerStepThroughAttribute ]
630
+ public System . Threading . Tasks . ValueTask DisposeAsync ( ) { throw null ; }
631
+ protected abstract System . Collections . Generic . IEnumerable < Microsoft . AspNetCore . Components . RenderFragment > GetItems ( int start , int count ) ;
632
+ [ System . Diagnostics . DebuggerStepThroughAttribute ]
633
+ protected override System . Threading . Tasks . Task OnAfterRenderAsync ( bool firstRender ) { throw null ; }
634
+ protected override void OnParametersSet ( ) { }
635
+ }
636
+ public sealed partial class Virtualize < TItem > : Microsoft . AspNetCore . Components . Virtualization . VirtualizeBase < TItem >
637
+ {
638
+ public Virtualize ( ) { }
639
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
640
+ public Microsoft . AspNetCore . Components . RenderFragment < TItem > ? ChildContent { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
641
+ protected override int ItemCount { get { throw null ; } }
642
+ [ Microsoft . AspNetCore . Components . ParameterAttribute ]
643
+ public System . Collections . Generic . ICollection < TItem > Items { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
644
+ protected override System . Collections . Generic . IEnumerable < Microsoft . AspNetCore . Components . RenderFragment > GetItems ( int start , int count ) { throw null ; }
645
+ }
646
+ }
0 commit comments