This repository has been archived on 2026-03-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Eco/VideoBrowser/Core/NoneUrlHandler.cs
2023-07-24 12:00:34 +02:00

30 lines
640 B
C#

namespace VideoBrowser.Core
{
/// <summary>
/// Defines the <see cref="NoneUrlHandler" />
/// </summary>
public class NoneUrlHandler : UrlHandlerBase
{
#region Constructors
/// <summary>
/// Initializes a new instance of the <see cref="NoneUrlHandler"/> class.
/// </summary>
public NoneUrlHandler() : base(string.Empty)
{
}
#endregion Constructors
#region Methods
/// <summary>
/// The ParseFullUrl
/// </summary>
protected override void ParseFullUrl()
{
}
#endregion Methods
}
}