IVsDataProvider.SupportsObject 方法

定义

重载

SupportsObject(Type)

确定 DDEX 提供程序是否支持指定类型的 DDEX 支持实体。

SupportsObject(Guid, Type)

确定 DDEX 提供程序是否支持指定 DDEX 数据源的 DDEX 支持实体的指定类型。

SupportsObject(Type)

确定 DDEX 提供程序是否支持指定类型的 DDEX 支持实体。

public:
 bool SupportsObject(Type ^ objType);
public bool SupportsObject (Type objType);
abstract member SupportsObject : Type -> bool
Public Function SupportsObject (objType As Type) As Boolean

参数

objType
Type

DDEX 支持实体的类型。

返回

如果 DDEX 提供程序支持指定类型的 DDEX 支持实体,则为 true;否则为 false。

例外

objType 参数为 null。

适用于

SupportsObject(Guid, Type)

确定 DDEX 提供程序是否支持指定 DDEX 数据源的 DDEX 支持实体的指定类型。

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

参数

source
Guid

DDEX 数据源标识符,或者 Empty 表示没有特定数据源。

objType
Type

DDEX 支持实体的类型。

返回

如果 DDEX 提供程序支持指定的 DDEX 数据源的指定类型的 DDEX 支持实体,则为 true;否则为 false。

例外

objType 参数为 null。

适用于