TurnStarting Event

TurnStarting is raised before the prompt is played. Note that for InstantMessagingStatementActivity activity the PromptType property is always PromptType.Main.

Namespace:  Microsoft.Rtc.Workflow.Activities
Assembly:  Microsoft.Rtc.Workflow (in Microsoft.Rtc.Workflow.dll)

Syntax

'Declaration
Public Event TurnStarting As EventHandler(Of InstantMessagingTurnStartingEventArgs)
public event EventHandler<InstantMessagingTurnStartingEventArgs> TurnStarting
public:
 event EventHandler<InstantMessagingTurnStartingEventArgs^>^ TurnStarting {
    void add (EventHandler<InstantMessagingTurnStartingEventArgs^>^ value);
    void remove (EventHandler<InstantMessagingTurnStartingEventArgs^>^ value);
}
function add_turnStarting(value);
function remove_turnStarting(value);

Remarks

Application developers can change the prompt by attaching an event handler to this event and providing the prompt in the event args.

Exceptions

Exception Condition
ArgumentNullException Thrown if the argument is null.
ArgumentException Thrown if value is of incorrect System.Type.
ArgumentException Thrown if dependencyEvent is a metaproperty.
ArgumentException Thrown if dependencyEvent represents a non-event System.Workflow.ComponentModel.DependencyProperty.
ArgumentException Thrown if dependencyEvent is not an event.
ReadOnlyException Value is a System.Workflow.ComponentModel.ActivityBind and this instance is not in System.Workflow.ComponentModel.DependencyObject.DesignMode.

See Also

InstantMessagingStatementActivity Class

Microsoft.Rtc.Workflow.Activities Namespace