DataViewManager Class
Represents the collection of data view hierarchies currently active in the Visual Studio Server Explorer and provides methods and properties with which to manage these data views.
Inheritance Hierarchy
System.Object
Microsoft.VisualStudio.Data.DataViewManager
Namespace: Microsoft.VisualStudio.Data
Assembly: Microsoft.VisualStudio.Data (in Microsoft.VisualStudio.Data.dll)
Syntax
'Declaration
<GuidAttribute("AB5F7D50-A307-46e6-A20C-ADDBF34C6771")> _
Public MustInherit Class DataViewManager _
Implements ICollection, IEnumerable
[GuidAttribute("AB5F7D50-A307-46e6-A20C-ADDBF34C6771")]
public abstract class DataViewManager : ICollection,
IEnumerable
[GuidAttribute(L"AB5F7D50-A307-46e6-A20C-ADDBF34C6771")]
public ref class DataViewManager abstract : ICollection,
IEnumerable
[<AbstractClass>]
[<GuidAttribute("AB5F7D50-A307-46e6-A20C-ADDBF34C6771")>]
type DataViewManager =
class
interface ICollection
interface IEnumerable
end
public abstract class DataViewManager implements ICollection, IEnumerable
The DataViewManager type exposes the following members.
Constructors
Name | Description | |
---|---|---|
DataViewManager | Class constructor. Instantiates a new instance of the DataViewManager class. |
Top
Properties
Name | Description | |
---|---|---|
Count | Retrieves the number of data view hierarchies in the current collection. | |
DataViews | Retrieves an array list of current data views. |
Top
Methods
Name | Description | |
---|---|---|
CopyTo | Copies the set of data view hierarchies in the collection to an array at the specified starting index. | |
CreateDataViewHierarchy | Creates a new data view hierarchy object instance. | |
Equals | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetDataViewHierarchy(Guid, String, Boolean) | Retrieves a data view hierarchy with the specified DDEX provider and connection information. | |
GetDataViewHierarchy(String, Guid, String, Boolean) | Retrieves data view hierarchy object instance specified by the input parameters and sets the name of the hierarchy root node. | |
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
IsEquivalent | Tests the equivalency of a specified data view. | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Top
Explicit Interface Implementations
Name | Description | |
---|---|---|
ICollection.CopyTo | Copies the set of data views exposed in the Visual Studio Server Explorer to an array, starting at the specified array index. | |
IEnumerable.GetEnumerator | Retrieves an enumerator that is able to iterate through the data views collection. | |
ICollection.IsSynchronized | Retrieves a value that indicates whether access to the data views collection is synchronized (thread safe). | |
ICollection.SyncRoot | Retrieves an object that can be used to synchronize access to the collection. |
Top
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.