MediaStreamSource.CanSeek Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets whether or not the application supports changing its position in the media time-line.
public:
property bool CanSeek { bool get(); void set(bool value); };
bool CanSeek();
void CanSeek(bool value);
public bool CanSeek { get; set; }
var boolean = mediaStreamSource.canSeek;
mediaStreamSource.canSeek = boolean;
Public Property CanSeek As Boolean
Property Value
bool
true if the application supports changing its position in the media time-line; otherwise, false. The default value is false.
Remarks
Setting the CanSeek property to true implies that the application is able to handle a Starting event that specifies a start offset other than the current position.
The default value is false.
Applications are allowed to change the value of this property at any time.