System.Configuration.IConfigurationSystem Interface
Assembly:
System.dll
Namespace:
System.Configuration
This type supports the Shared Source CLI infrastructure and is not intended to be used directly from your code.
Summary
The IConfigurationSystem interface defines the contract that a configuration system must implement.
C# Syntax:
public interface IConfigurationSystem
See also:
System.Configuration Namespace
System.Configuration.IConfigurationSystem Member List:
Public Methods
GetConfig
Returns the config object for the specified key.
Init
Initializes the configuration system.
System.Configuration.IConfigurationSystem Member Details
Method:
GetConfig
(
string
configKey
)
Summary
Returns the config object for the specified key.
C# Syntax:
object GetConfig(
string
configKey
);
Parameters:
configKey
Section name of config object to retrieve.
Return to top
Method:
Init
()
Summary
Initializes the configuration system.
C# Syntax:
void Init();
Return to top
Top of page
Copyright (c) 2002 Microsoft Corporation. All rights reserved.