DataProviderManager Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents the set of registered DDEX providers.
public ref class DataProviderManager abstract : System::Collections::Generic::ICollection<Microsoft::VisualStudio::Data::DataProvider ^>, System::Collections::Generic::IEnumerable<Microsoft::VisualStudio::Data::DataProvider ^>
[System.Runtime.InteropServices.Guid("BCD55999-B818-4240-9528-3D96274477C9")]
public abstract class DataProviderManager : System.Collections.Generic.ICollection<Microsoft.VisualStudio.Data.DataProvider>, System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.Data.DataProvider>
[<System.Runtime.InteropServices.Guid("BCD55999-B818-4240-9528-3D96274477C9")>]
type DataProviderManager = class
interface ICollection<DataProvider>
interface seq<DataProvider>
interface IEnumerable
Public MustInherit Class DataProviderManager
Implements ICollection(Of DataProvider), IEnumerable(Of DataProvider)
- Inheritance
-
DataProviderManager
- Attributes
- Implements
Constructors
DataProviderManager() |
Class constructor. |
Properties
Count |
Retrieves the number of registered DDEX providers. |
Methods
CopyTo(DataProvider[], Int32) |
Copies the set of registered DDEX providers to an array, starting at the specified array index. |
GetDataProvider(Guid) |
Retrieves a DDEX provider using the specified GUID. |
GetDataProviders() |
Retrieves an array containing all registered DDEX providers. |
GetDataProvidersImpl() |
This method is for internal use only and is not to be called. |
Explicit Interface Implementations
ICollection<DataProvider>.Add(DataProvider) | |
ICollection<DataProvider>.Clear() | |
ICollection<DataProvider>.Contains(DataProvider) | |
ICollection<DataProvider>.IsReadOnly | |
ICollection<DataProvider>.Remove(DataProvider) | |
IEnumerable.GetEnumerator() |
Retrieves an enumerator with which to enumerate the DDEX provider collection. |
IEnumerable<DataProvider>.GetEnumerator() |
Extension Methods
EmptyIfNull<T>(IEnumerable<T>) |
Return this enumeration in case it is not null. In case it is null return empty enumeration. |