Share via


DataSupport Class

Represents the base class for all classes that provide data support XML.

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

Syntax

'Declaration
Public MustInherit Class DataSupport _
    Implements IVsDataSupport
'Usage
Dim instance As DataSupport
public abstract class DataSupport : IVsDataSupport
public ref class DataSupport abstract : IVsDataSupport
public abstract class DataSupport implements IVsDataSupport

Remarks

One of the fundamental design goals of DDEX is for each major feature area of extensibility to be controlled through data support XML supplied by the DDEX provider. For each such feature area, there is a class - for example, DataViewSupport or DataObjectSupport - that provides a way to supply a stream of XML for the feature.

There are a few standard places from which this stream of XML may come. It may be read from a managed resource compiled into an assembly, or from a file on disk. This base class implements methods that will automatically locate either, depending on which constructor is called.

Inheritance Hierarchy

System.Object
  Microsoft.VisualStudio.Data.Framework.DataSupport
    Microsoft.VisualStudio.Data.Framework.DataObjectSupport
    Microsoft.VisualStudio.Data.Framework.DataViewSupport

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

DataSupport Members

Microsoft.VisualStudio.Data.Framework Namespace

Other Resources

DDEX Data Object Support

DDEX Data View Support