CatenaLogic.Windows.Presentation.WebcamPlayer.FilterInfo.GetMonikerString C# (CSharp) Method

GetMonikerString() private static method

Gets the moniker string for a specific moniker
private static GetMonikerString ( IMoniker moniker ) : string
moniker IMoniker Moniker to retrieve the moniker string of
return string
        private static string GetMonikerString(IMoniker moniker)
        {
            // Declare variables
            string result = "";

            // Get the display name of the moniker
            moniker.GetDisplayName(null, null, out result);

            // Return result
            return result;
        }