ALAssetsGroup.Enumerate Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Enumerate(ALAssetsEnumerator) |
Enumerates all the assets in the group. |
Enumerate(NSEnumerationOptions, ALAssetsEnumerator) |
Enumerates all the assets in the group with the specified options. |
Enumerate(NSIndexSet, NSEnumerationOptions, ALAssetsEnumerator) |
Enumerates assets in the group with the specified options. |
Enumerate(ALAssetsEnumerator)
Enumerates all the assets in the group.
[Foundation.Export("enumerateAssetsUsingBlock:")]
public virtual void Enumerate (AssetsLibrary.ALAssetsEnumerator result);
abstract member Enumerate : AssetsLibrary.ALAssetsEnumerator -> unit
override this.Enumerate : AssetsLibrary.ALAssetsEnumerator -> unit
Parameters
- result
- ALAssetsEnumerator
Delegate or anonymous method to invoke with the matching asset.
- Attributes
Applies to
Enumerate(NSEnumerationOptions, ALAssetsEnumerator)
Enumerates all the assets in the group with the specified options.
[Foundation.Export("enumerateAssetsWithOptions:usingBlock:")]
public virtual void Enumerate (Foundation.NSEnumerationOptions options, AssetsLibrary.ALAssetsEnumerator result);
abstract member Enumerate : Foundation.NSEnumerationOptions * AssetsLibrary.ALAssetsEnumerator -> unit
override this.Enumerate : Foundation.NSEnumerationOptions * AssetsLibrary.ALAssetsEnumerator -> unit
Parameters
- options
- NSEnumerationOptions
Enumeration options.
- result
- ALAssetsEnumerator
Delegate or anonymous method to invoke with the matching asset.
- Attributes
Applies to
Enumerate(NSIndexSet, NSEnumerationOptions, ALAssetsEnumerator)
Enumerates assets in the group with the specified options.
[Foundation.Export("enumerateAssetsAtIndexes:options:usingBlock:")]
public virtual void Enumerate (Foundation.NSIndexSet indexSet, Foundation.NSEnumerationOptions options, AssetsLibrary.ALAssetsEnumerator result);
abstract member Enumerate : Foundation.NSIndexSet * Foundation.NSEnumerationOptions * AssetsLibrary.ALAssetsEnumerator -> unit
override this.Enumerate : Foundation.NSIndexSet * Foundation.NSEnumerationOptions * AssetsLibrary.ALAssetsEnumerator -> unit
Parameters
- indexSet
- NSIndexSet
The index of the assets to enumerate.
- options
- NSEnumerationOptions
Enumeration options.
- result
- ALAssetsEnumerator
Delegate or anonymous method to invoke with the matching asset.
- Attributes