Click or drag to resize
TapiCallPark Method
Performs directed or nondirected park.

Namespace: Traysoft.AddTapi
Assembly: Traysoft.AddTapi (in Traysoft.AddTapi.dll) Version: 6.0.0.1110
Syntax
public string Park(
	string number
)

Parameters

number
Type: SystemString
Number where the call is to be parked when using directed park. This paramater should be null (Nothing in Visual Basic) for nondirected park.

Return Value

Type: String
For nondirected park, the number where the call is parked is returned.
Exceptions
ExceptionCondition
TapiExceptionThe call was not parked because a TAPI error occurred.
Remarks

With directed park, the application determines the number at which it wants to park the call. With nondirected park, the switch determines the number and provides this to the application. In either case, a parked call can be unparked using Unpark(String) by specifying this number.

The parked call typically enters the idle state after it has been successfully parked, and the application should release the reference to the corresponding TapiCall object. When the application performs a Unpark(String) on the parked call, a new TapiCall object is created for the unparked call.

See Also