IVsDataProvider.SupportsObject Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SupportsObject(Type) |
Determines whether a DDEX provider supports the specified type of DDEX support entity. |
SupportsObject(Guid, Type) |
Determines whether a DDEX provider supports the specified type of DDEX support entity for the specified DDEX data source. |
SupportsObject(Type)
Determines whether a DDEX provider supports the specified type of DDEX support entity.
public:
bool SupportsObject(Type ^ objType);
public bool SupportsObject (Type objType);
abstract member SupportsObject : Type -> bool
Public Function SupportsObject (objType As Type) As Boolean
Parameters
- objType
- Type
A type of DDEX support entity.
Returns
true if the DDEX provider supports the specified type of DDEX support entity; otherwise, false.
Exceptions
The objType
parameter is null.
Applies to
SupportsObject(Guid, Type)
Determines whether a DDEX provider supports the specified type of DDEX support entity for the specified DDEX data source.
public:
bool SupportsObject(Guid source, Type ^ objType);
public bool SupportsObject (Guid source, Type objType);
abstract member SupportsObject : Guid * Type -> bool
Public Function SupportsObject (source As Guid, objType As Type) As Boolean
Parameters
- objType
- Type
A type of DDEX support entity.
Returns
true if the DDEX provider supports the specified type of DDEX support entity for the specified DDEX data source; otherwise, false.
Exceptions
The objType
parameter is null.