ScreenToGif.Webcam.DirectX.Filter.GetMonikerString C# (CSharp) Method

GetMonikerString() protected method

Retrieve the a moniker's display name (i.e. it's unique string)
protected GetMonikerString ( UCOMIMoniker moniker ) : string
moniker UCOMIMoniker
return string
        protected string GetMonikerString(UCOMIMoniker moniker)
        {
            string s;
            moniker.GetDisplayName(null, null, out s);
            return (s);
        }