[]
Checks to see if a device interface for a graphics component is supported by the system.
public bool IsInterfaceSupported(Type type)
Type | Name | Description |
---|---|---|
Type | type | The GUID of the interface of the device version for which support is being checked. For example, typeof(ID3D10Device).GUID. |
Type | Description |
---|---|
bool |
|
Checks to see if a device interface for a graphics component is supported by the system.
public bool IsInterfaceSupported<T>() where T : ComObject
Type | Description |
---|---|
bool |
|
Name | Description |
---|---|
T | the interface of the device version for which support is being checked. |
Checks to see if a device interface for a graphics component is supported by the system.
public bool IsInterfaceSupported<T>(out long userModeVersion) where T : ComObject
Type | Name | Description |
---|---|---|
long | userModeVersion | The user mode driver version of InterfaceName. This is only returned if the interface is supported. |
Type | Description |
---|---|
bool |
|
Name | Description |
---|---|
T | the interface of the device version for which support is being checked. |
Checks to see if a device interface for a graphics component is supported by the system.
public bool IsInterfaceSupported(Type type, out long userModeVersion)
Type | Name | Description |
---|---|---|
Type | type | The GUID of the interface of the device version for which support is being checked. For example, typeof(ID3D10Device).GUID. |
long | userModeVersion | The user mode driver version of InterfaceName. This is only returned if the interface is supported. |
Type | Description |
---|---|
bool |
|