RtspSessionSeekSubStreams Method |
Attempts to progress the session to a play state (Play) by supplying time offset.
The session can either be paused or in play state. (See also
RtspPrimitives.ExecuteSessionNonAggregate)
Namespace: StreamCoders.Rtsp.ExtensionsAssembly: MediaBase (in MediaBase.dll) Version: 2.0.5.0 (2.0.5.0)
Syntaxpublic bool SeekSubStreams(
List<RtspSubStream> subs,
TimeSpan position
)
Public Function SeekSubStreams (
subs As List(Of RtspSubStream),
position As TimeSpan
) As Boolean
public:
bool SeekSubStreams(
List<RtspSubStream^>^ subs,
TimeSpan position
)
member SeekSubStreams :
subs : List<RtspSubStream> *
position : TimeSpan -> bool
Parameters
- subs
- Type: System.Collections.GenericListRtspSubStream
A list of SubStream objects to use. - position
- Type: SystemTimeSpan
The position in time units to start playing from.
Return Value
Type:
Boolean
Returns true on success, otherwise false.
See Also