Share via


DataConnectionDialog.AvailableProviders Property

Retrieves a collection of unique identifiers for DDEX providers that are currently available for selection in the Data Connection dialog box.

This API is not CLS-compliant. 

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

Syntax

'Declaration
<CLSCompliantAttribute(False)> _
Public Overridable ReadOnly Property AvailableProviders As ICollection(Of Guid)
[CLSCompliantAttribute(false)]
public virtual ICollection<Guid> AvailableProviders { get; }
[CLSCompliantAttribute(false)]
public:
virtual property ICollection<Guid>^ AvailableProviders {
    ICollection<Guid>^ get ();
}
[<CLSCompliantAttribute(false)>]
abstract AvailableProviders : ICollection<Guid> with get
[<CLSCompliantAttribute(false)>]
override AvailableProviders : ICollection<Guid> with get
function get AvailableProviders () : ICollection<Guid>

Property Value

Type: System.Collections.Generic.ICollection<Guid>
Returns an ICollection object instance that contains a collection of unique identifiers for the current set of available DDEX providers.

Remarks

This collection is read/write, which allows you to add to the collection using code like dataConnectionDialog.AvailableProviders.Add(myProvider).

.NET Framework Security

See Also

Reference

DataConnectionDialog Class

Microsoft.VisualStudio.Data Namespace