ParticipateState 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.
Indicates what methods have been called on the object (Activity/CollaborationSession). The ParticipateState records which methods have been called when the object is in the Idle or Incoming SignalingState. It can be used to determine if a Participate or Terminate is being processed before the state change happens.
public enum class ParticipateState
public enum ParticipateState
type ParticipateState =
Public Enum ParticipateState
- Inheritance
-
ParticipateState
Fields
Name | Value | Description |
---|---|---|
Idle | 0 | Neither Participate nor Terminate state have been called. Idle state can go to Participate or Terminate states. |
Participated | 1 | Participate has been called. Participate can only be reached from the Idle state. |
Terminating | 2 | Terminate has been called. The terminate work is in progress. |
Terminated | 3 | Terminate has been called. The Terminate state can be reached from the Idle or Participate states. Once in the Terminate state, the state can no longer change and calling Participate is an InvalidOperationException. |