Share via


IVsDataProvider.SupportsObject Method

Definition

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

source
Guid

A DDEX data source identifier, or Empty for no specific data source.

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.

Applies to