Gets or sets the value (in seconds) for the composing timeout.

Namespace:  Microsoft.Rtc.Collaboration
Assembly:  Microsoft.Rtc.Collaboration(in Microsoft.Rtc.Collaboration.dll)

Syntax

Visual Basic (Declaration)
Public 
Property 
ComposingTimeoutValue 
As 
Integer
C#
public 
int 
ComposingTimeoutValue { 
get; 
set; }
Visual C++
public:
property 
int 
ComposingTimeoutValue {
	
int 
get ();
	
void 
set (
int 
value);
}
JavaScript
function get_
composingTimeoutValue();
function set_
composingTimeoutValue(
value);

Remarks

This is used to control the timeout value used for all instant messaging flows. The default value is 3 seconds. The maximum value is 30 seconds. The local composing state indicated by the IM flow goes back to Idle if the application does not set the local compositing state within this time period. If the application expects the composing state from a web client which can cause some roundtrip delay, then it is recommended that this time out value is increased.

See Also