Syntax
Visual Basic (Declaration) |
|
<ConfigurationPropertyAttribute(IsRequired=False,
Name="providerMappings",
IsDefaultCollection=False,
IsKey=False)>
Public ReadOnly Property ProviderMappings As NamedElementCollection(Of DbProviderMapping) |
Visual Basic (Usage) |
Copy Code |
Dim instance As DataAccessDatabaseSettings
Dim value As NamedElementCollection(Of DbProviderMapping)
value = instance.ProviderMappings
|
C# |
|
[ConfigurationPropertyAttribute(IsRequired=false,
Name="providerMappings",
IsDefaultCollection=false,
IsKey=false)]
public NamedElementCollection<DbProviderMapping> ProviderMappings {get;} |
C++/CLI |
|
[ConfigurationPropertyAttribute(IsRequired=false,
Name="providerMappings",
IsDefaultCollection=false,
IsKey=false)]
public:
property NamedElementCollection<DbProviderMapping> ProviderMappings {
NamedElementCollection<DbProviderMapping> get();
} |
Requirements
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family
See Also