Check if a COM Object is available
Parameters
- clsid
- The CLSID of this object
Return Value
true if the object is available, false if not
Example
This sample shows how to check if the MPEG-2 Demultiplexer filter is available
if (FilterGraphTools.IsThisComObjectInstalled(typeof(MPEG2Demultiplexer).GUID)) { // Use it... }