DataSourceSpecializer Class

Provides the ability to specialize the behavior of a DDEX provider, depending on the data source to which it is connected.

Inheritance Hierarchy

System.Object
  Microsoft.VisualStudio.Data.Framework.DataSourceSpecializer

Namespace:  Microsoft.VisualStudio.Data.Framework
Assembly:  Microsoft.VisualStudio.Data.Framework (in Microsoft.VisualStudio.Data.Framework.dll)

Syntax

'Declaration
Public MustInherit Class DataSourceSpecializer _
    Implements IVsDataSourceSpecializer, IVsDataSiteableObject(Of IServiceProvider)
public abstract class DataSourceSpecializer : IVsDataSourceSpecializer, 
    IVsDataSiteableObject<IServiceProvider>
public ref class DataSourceSpecializer abstract : IVsDataSourceSpecializer, 
    IVsDataSiteableObject<IServiceProvider^>
[<AbstractClass>]
type DataSourceSpecializer =  
    class 
        interface IVsDataSourceSpecializer 
        interface IVsDataSiteableObject<IServiceProvider>
    end
public abstract class DataSourceSpecializer implements IVsDataSourceSpecializer, IVsDataSiteableObject<IServiceProvider>

The DataSourceSpecializer type exposes the following members.

Constructors

  Name Description
Protected method DataSourceSpecializer Initializes a new instance of the DataSourceSpecializer class.

Top

Properties

  Name Description
Protected property ServiceProvider Retrieves the current instance of the service provider as a IServiceProvider object.

Top

Methods

  Name Description
Public method CreateObject Creates a DDEX provider–implemented object of the given type that is specialized for the specified data source.
Public method DeriveSource Determines which data source supported by the provider is represented by the given connection string.
Public method Equals Determines whether the specified object is equal to the current object. (Inherited from Object.)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetAssembly Locates an assembly, given an assembly string and a data source GUID.
Public method GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method GetType() Gets the Type of the current instance. (Inherited from Object.)
Public method GetType(Guid, String) Retrieves a type definition, given a type name and a data source GUID.
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method ToString Returns a string that represents the current object. (Inherited from Object.)

Top

Explicit Interface Implementations

  Name Description
Explicit interface implemetationPrivate property IVsDataSiteableObject<IServiceProvider>.Site Gets the current instance of the service provider as a IServiceProvider object.

Top

Remarks

Some DDEX providers behave differently when connected to different data sources. The most extreme example is with generic providers like OLE DB and ODBC, whose specific providers or drivers define their behavior. A simpler example is the differentiation between a SQL Server connection and a SQL Server Database File connection.

Although the same provider is used to connect to each data source, the design time experience may be different. A DDEX provider can implement this class to provide ways of customizing the behavior of the provider, depending on its data source.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

Microsoft.VisualStudio.Data.Framework Namespace

IVsDataProvider

IVsDataProviderManager