Options for Block enumeration operations.
Available in Mac OS X v10.6 and later.
| C# | Visual Basic | Visual C++ |
public enum NSEnumerationOptions
Public Enumeration NSEnumerationOptions
public enum class NSEnumerationOptions
| Member | Description |
|---|---|
| NSEnumerationConcurrent | Specifies that the Block enumeration should be concurrent. The order of invocation is nondeterministic and undefined; this flag is a hint and may be ignored by the implementation under some circumstances; the code of the Block must be safe against concurrent invocation. Available in Mac OS X v10.6 and later. |
| NSEnumerationReverse | Specifies that the enumeration should be performed in reverse. This option is available for NSArray and NSIndexSet classes; its behavior is undefined for NSDictionary and NSSet classes, or when combined with the NSEnumerationConcurrent flag. Available in Mac OS X v10.6 and later. |
- Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later)