ComponentOne Bitmap for WPF
C1.WPF.DX.4.5.2 Assembly / C1.Util.DX.DXGI Namespace / Adapter Class / IsInterfaceSupported Method / IsInterfaceSupported(Type,Int64) Method
The GUID of the interface of the device version for which support is being checked. For example, typeof(ID3D10Device).GUID.
The user mode driver version of InterfaceName. This is only returned if the interface is supported.

In This Topic
    IsInterfaceSupported(Type,Int64) Method
    In This Topic
    Checks to see if a device interface for a graphics component is supported by the system.
    Syntax
    'Declaration
     
    Public Overloads Function IsInterfaceSupported( _
       ByVal type As Type, _
       ByRef userModeVersion As Long _
    ) As Boolean
    public bool IsInterfaceSupported( 
       Type type,
       out long userModeVersion
    )

    Parameters

    type
    The GUID of the interface of the device version for which support is being checked. For example, typeof(ID3D10Device).GUID.
    userModeVersion
    The user mode driver version of InterfaceName. This is only returned if the interface is supported.

    Return Value

    true if the interface is supported; otherwise, false.
    See Also