Click here to Skip to main content
15,896,557 members
Articles / Web Development / HTML

nVLC

Rate me:
Please Sign up or sign in to vote.
4.94/5 (213 votes)
12 Feb 2018GPL316 min read 12.2M   69.9K   379  
A .NET API for the libVLC interface so the vast majority of VLC functionality could be utilized in managed applications
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Implementation.Exceptions
{
    /// <summary>
    /// Represents error that occured due to removal of libVLC module
    /// </summary>
    public class LibVlcRemovedModuleException : Exception
    {
        /// <summary>
        /// Initializes new instance of the class
        /// </summary>
        /// <param name="libVlcModuleName"></param>
        /// <param name="nVlcModuleName"></param>
        /// <param name="lastWorkingVersion"></param>
        public LibVlcRemovedModuleException(string libVlcModuleName, string nVlcModuleName, string lastWorkingVersion)
        {
            LibVlcModuleName = libVlcModuleName;
            LastWorkingVersion = lastWorkingVersion;
            this.nVlcModuleName = nVlcModuleName;
        }

        /// <summary>
        /// Name of the libVLC module
        /// </summary>
        public string LibVlcModuleName { get; private set; }

        /// <summary>
        /// Last version where module was operational
        /// </summary>
        public string LastWorkingVersion { get; private set; }

        /// <summary>
        /// Name of the nVLC object using removed module
        /// </summary>
        public string nVlcModuleName { get; private set; }

        /// <summary>
        /// Gets a message that describes the current exception
        /// </summary>
        public override string Message
        {
            get
            {
                return string.Format("{0} module based on {1} supported up to libVLC version {2}", nVlcModuleName, LibVlcModuleName, LastWorkingVersion);
            }
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Software Developer (Senior)
Israel Israel
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions