The SetLoopRead API procedure allows the application to "loop" read sample block data from a source wave file. When enabled, the application will be able to infinitely read sample block data from the source wave file using the GetWaveBuffer(array<Object>[]()[]) API procedure without ever running out of sample block data. This capability is useful when streaming wave file data to phone line transmit IVR channels, in addition to other uses.

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

Syntax

C#
public void SetLoopRead(
	bool LoopReadState
)
Visual Basic (Declaration)
Public Sub SetLoopRead ( _
	LoopReadState As Boolean _
)
Visual C++
public:
void SetLoopRead(
	bool LoopReadState
)
J#
public void SetLoopRead(
	boolean LoopReadState
)

Parameters

LoopReadState
Type: System..::.Boolean
The state of loop reading. If set to non zero, your application can continuously read sample blocks from the source wave file using the GetWaveBuffer(array<Object>[]()[]) API procedure.

Return Value

Nothing.

Remarks

None.

See Also