MediaBreakSchedule.PostrollBreak 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 MediaBreak to be played after the MediaPlaybackItem associated with the MediaBreakSchedule plays.
public:
property MediaBreak ^ PostrollBreak { MediaBreak ^ get(); void set(MediaBreak ^ value); };
MediaBreak PostrollBreak();
void PostrollBreak(MediaBreak value);
public MediaBreak PostrollBreak { get; set; }
var mediaBreak = mediaBreakSchedule.postrollBreak;
mediaBreakSchedule.postrollBreak = mediaBreak;
Public Property PostrollBreak As MediaBreak
Property Value
The MediaBreak to be played after the MediaPlaybackItem associated with the MediaBreakSchedule plays.
Remarks
If you want a MediaBreak to be played before the associated MediaPlaybackItem plays, assign it to the PrerollBreak property. If you want a MediaBreak to play at a point during the playback of the associated MediaPlaybackItem, use the InsertMidrollBreak method.