The GetTelephonyStatusString API procedure can be called by application software to retrieve an ASCII string representation of all status values specified in the VoipMediaEngine..::.TELEPHONY_RETURN_VALUE enumeration.

This API procedure is generally used during application development.

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

Syntax

C#
public string GetTelephonyStatusString(
	VoipMediaEngine..::.TELEPHONY_RETURN_VALUE SipStatus
)
Visual Basic (Declaration)
Public Function GetTelephonyStatusString ( _
	SipStatus As VoipMediaEngine..::.TELEPHONY_RETURN_VALUE _
) As String
Visual C++
public:
String^ GetTelephonyStatusString(
	VoipMediaEngine..::.TELEPHONY_RETURN_VALUE SipStatus
)
J#
public String GetTelephonyStatusString(
	VoipMediaEngine..::.TELEPHONY_RETURN_VALUE SipStatus
)

Parameters

SipStatus
Type: LanScape..::.VoipMediaEngine..::.TELEPHONY_RETURN_VALUE
The VOIP Media Engine status code.

Return Value

If the function succeeds, the return value will be a NULL terminates ASCII string. Application software can use this string as required.

If the function fails, the return value will be the empty string "".

Remarks

None.

See Also