namespace VideoBrowser.If
{
using VideoBrowser.Core;
#region Interfaces
///
/// Defines the
///
public interface IUrlHandler
{
#region Properties
///
/// Gets the main Domain Name like youtube.com.
///
string DomainName { get; }
///
/// Gets or sets the Full Url like youtube video or play list url.
///
string FullUrl { get; set; }
///
/// Gets a value indicating whether IsDownloadable
///
bool IsDownloadable { get; }
///
/// Gets a value indicating whether IsPlayList
///
bool IsPlayList { get; }
///
/// Gets the VideoUrlTypes
///
UrlTypes VideoUrlTypes { get; }
#endregion Properties
}
#endregion Interfaces
}