AdaptiveMediaSource.DesiredSeekableWindowSize 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 the requested maximum size of the time window within which the user can seek within the streaming media.
public:
property IReference<TimeSpan> ^ DesiredSeekableWindowSize { IReference<TimeSpan> ^ get(); void set(IReference<TimeSpan> ^ value); };
IReference<TimeSpan> DesiredSeekableWindowSize();
void DesiredSeekableWindowSize(IReference<TimeSpan> value);
public System.Nullable<System.TimeSpan> DesiredSeekableWindowSize { get; set; }
var iReference = adaptiveMediaSource.desiredSeekableWindowSize;
adaptiveMediaSource.desiredSeekableWindowSize = iReference;
Public Property DesiredSeekableWindowSize As Nullable(Of TimeSpan)
Property Value
The requested maximum size of the time window in which the user can seek within the streaming media. This value must be between zero and the value of MaxSeekableWindowSize. If the specified value is greater than the maximum value, the system automatically clamps to the allowed range, but when you retrieve the property it will return the unclamped value.
Windows requirements
Device family |
Windows 10 Creators Update (introduced in 10.0.15063.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduced in v4.0)
|