Share via


INSCollectionViewPrefetching Interface

Definition

This interface represents the Objective-C protocol NSCollectionViewPrefetching.

[Foundation.Protocol(Name="NSCollectionViewPrefetching", WrapperType=typeof(AppKit.NSCollectionViewPrefetchingWrapper))]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=true, IsStatic=false, Name="PrefetchItems", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AppKit.NSCollectionView), typeof(Foundation.NSIndexPath[]) }, Selector="collectionView:prefetchItemsAtIndexPaths:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="CancelPrefetching", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AppKit.NSCollectionView), typeof(Foundation.NSIndexPath[]) }, Selector="collectionView:cancelPrefetchingForItemsAtIndexPaths:")]
public interface INSCollectionViewPrefetching : IDisposable, ObjCRuntime.INativeObject
[<Foundation.Protocol(Name="NSCollectionViewPrefetching", WrapperType=typeof(AppKit.NSCollectionViewPrefetchingWrapper))>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=true, IsStatic=false, Name="PrefetchItems", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AppKit.NSCollectionView), typeof(Foundation.NSIndexPath[]) }, Selector="collectionView:prefetchItemsAtIndexPaths:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="CancelPrefetching", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AppKit.NSCollectionView), typeof(Foundation.NSIndexPath[]) }, Selector="collectionView:cancelPrefetchingForItemsAtIndexPaths:")>]
type INSCollectionViewPrefetching = interface
    interface INativeObject
    interface IDisposable
Attributes
Implements

Remarks

A class that implements this interface (and subclasses NSObject) will be exported to Objective-C as implementing the Objective-C protocol this interface represents.

A class may also implement members from this interface to implement members from the protocol.

Applies to