Skips the specified number of milliseconds in the media source.

Namespace:  Microsoft.Rtc.Collaboration.AudioVideo
Assembly:  Microsoft.Rtc.Collaboration(in Microsoft.Rtc.Collaboration.dll)

Syntax

Visual Basic (Declaration)
Public 
Sub 
Skip ( _
	
milliSeconds 
As 
Integer _
)
C#
public 
void 
Skip(
	
int 
milliSeconds
)
Visual C++
public:
void 
Skip(
	
int 
milliSeconds
)
JavaScript
function 
skip(
milliSeconds);

Parameters

milliSeconds
Type: Int32
The number of milliseconds to skip. The value can be positive (to move forward) or negative (to move backward).

Remarks

Skip enables the current play position to be moved. This method can be called in any state.

Exceptions

Exception Condition
InvalidOperationException Thrown when no source is attached or when the source is closed.

See Also