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 to revert the local composing state to Idle. If an application sets LocalComposingState to Composing, it is automatically reverted to Idle if the application does not set the LocalComposingState to Composing again within this idle timeout. Note that it might take a few more seconds after this timeout value for the actual state to go to Idle.

See Also