public MediaList(MediaItem[] items) { if (_subItems == null) { _subItems = new MediaItemCollection(this); } this._subItems.AddRange(items); }
public MediaList(string title) { this._title = title; if (_subItems == null) { _subItems = new MediaItemCollection(this); } }
public MediaList(string title, MediaItem[] items) { this._title = title; if (_subItems == null) { _subItems = new MediaItemCollection(this); } this._subItems.AddRange(items); }
public MediaList(string title, bool bOpen) { this._title = title; this._isOpen = bOpen; if (_subItems == null) { _subItems = new MediaItemCollection(this); } }
public MediaList() { if (this._title == null) { this._title = string.Empty; } if (_subItems == null) { _subItems = new MediaItemCollection(this); } }