IVsDataMappedObjectSelector.SupportsType Method

Definition

Overloads

SupportsType<T>()

Indicates whether the mapped object selector can map the relational object type represented by the generic type T to an underlying type.

SupportsType<T>(String)

Indicates whether the mapped object selector can map the relational object type represented by the generic type T and the specific type name to an underlying type.

SupportsType<T>()

Indicates whether the mapped object selector can map the relational object type represented by the generic type T to an underlying type.

public:
generic <typename T>
 where T : Microsoft::VisualStudio::Data::Services::IVsDataMappedObject bool SupportsType();
public bool SupportsType<T> () where T : Microsoft.VisualStudio.Data.Services.IVsDataMappedObject;
abstract member SupportsType : unit -> bool (requires 'T :> Microsoft.VisualStudio.Data.Services.IVsDataMappedObject)
Public Function SupportsType(Of T As IVsDataMappedObject) () As Boolean

Type Parameters

T

The type of the parameter.

Returns

true if the type is supported; otherwise, false.

Applies to

SupportsType<T>(String)

Indicates whether the mapped object selector can map the relational object type represented by the generic type T and the specific type name to an underlying type.

public:
generic <typename T>
 where T : Microsoft::VisualStudio::Data::Services::IVsDataMappedObject bool SupportsType(System::String ^ specificTypeName);
public bool SupportsType<T> (string specificTypeName) where T : Microsoft.VisualStudio.Data.Services.IVsDataMappedObject;
abstract member SupportsType : string -> bool (requires 'T :> Microsoft.VisualStudio.Data.Services.IVsDataMappedObject)
Public Function SupportsType(Of T As IVsDataMappedObject) (specificTypeName As String) As Boolean

Type Parameters

T

The type of the parameter.

Parameters

specificTypeName
String

The specific type name of the relational object to examine.

Returns

true if the type is supported; otherwise, false.

Applies to