EnumerationResult Enum
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.
Identifies enumeration results.
[Orleans.GenerateSerializer]
public enum EnumerationResult
[<Orleans.GenerateSerializer>]
type EnumerationResult =
Public Enum EnumerationResult
- Inheritance
-
EnumerationResult
- Attributes
Fields
Name | Value | Description |
---|---|---|
Heartbeat | 1 | This result represents a heartbeat. Issue a subsequent enumeration call to receive a new result. |
Element | 2 | This result represents a value from the enumeration. |
Batch | 4 | This result represents a sequence of values from the enumeration. |
Completed | 8 | This result indicates that enumeration has completed and that no further results will be produced. |
CompletedWithElement | 10 | This result indicates that enumeration has completed and that no further results will be produced. |
CompletedWithBatch | 12 | This result indicates that enumeration has completed and that no further results will be produced. |
MissingEnumeratorError | 16 | The attempt to enumerate failed because the enumerator was not found. |