The SetReinviteTimeout function is associated with call hold operations. It allows an application to specify the number of milliseconds that will be used to determine if a "call hold" or "call off hold" operation has timed out.

Namespace:  LanScape
Assembly:  LMEVoipManaged (in LMEVoipManaged.dll) Version: 6.0.5226.26700

Syntax

C#
public VoipMediaEngine..::.TELEPHONY_RETURN_VALUE SetReinviteTimeout(
	uint ReinviteTimeoutMs
)
Visual Basic (Declaration)
Public Function SetReinviteTimeout ( _
	ReinviteTimeoutMs As UInteger _
) As VoipMediaEngine..::.TELEPHONY_RETURN_VALUE
Visual C++
public:
VoipMediaEngine..::.TELEPHONY_RETURN_VALUE SetReinviteTimeout(
	unsigned int ReinviteTimeoutMs
)
J#
public VoipMediaEngine..::.TELEPHONY_RETURN_VALUE SetReinviteTimeout(
	UInt32 ReinviteTimeoutMs
)

Parameters

ReinviteTimeoutMs
Type: System..::.UInt32
The number of milliseconds to use when determining "call hold" or "call off hold" time-out state. Any value 2000 Ms or greater is acceptable.

Return Value

If the function succeeds, the return value will be SipSuccess.

If the function fails, the return value will be one of the following values as specified by the VoipMediaEngine..::.TELEPHONY_RETURN_VALUE data type.

Return ValueDescription
SipInvalidHandle
Application software specified an invalid telephony handle in one of the API procedures. This usually indicates memory corruption on the part of application software.

(API return value)

Remarks

None.

See Also