- componentName
- Type: System.String The name of the component to check whether it has a registered configuration.
| Visual Basic (Declaration) | |
|---|---|
Function IsConfigurationRegistered( _ ByVal componentName As String _ ) As Boolean | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As IWorkstationDataAccessAgent Dim componentName As String Dim value As Boolean value = instance.IsConfigurationRegistered(componentName) | |
| C# | |
|---|---|
bool IsConfigurationRegistered( string componentName ) | |
| Managed Extensions for C++ | |
|---|---|
bool IsConfigurationRegistered( string* componentName ) | |
| C++/CLI | |
|---|---|
bool IsConfigurationRegistered( String^ componentName ) | |
Parameters
- componentName
- Type: System.String The name of the component to check whether it has a registered configuration.
To register a configuration for a component call the RegisterConfiguration
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
Copy Code