ConfigurationSection Constructor

Definición

Inicializa una nueva instancia de la clase ConfigurationSection.

protected:
 ConfigurationSection();
protected ConfigurationSection ();
Protected Sub New ()

Ejemplos

El siguiente ejemplo muestra cómo se usa el constructor ConfigurationSection. En este ejemplo se supone que ha creado una clase de sección personalizada denominada CustomSection. Para obtener un ejemplo de esta clase, vea la información general de la ConfigurationSection clase.


// Create a custom section.
static void CreateSection()
{
    try
    {

        CustomSection customSection;

        // Get the current configuration file.
        System.Configuration.Configuration config =
                ConfigurationManager.OpenExeConfiguration(
                ConfigurationUserLevel.None);

        // Create the section entry  
        // in the <configSections> and the 
        // related target section in <configuration>.
        if (config.Sections["CustomSection"] == null)
        {
            customSection = new CustomSection();
            config.Sections.Add("CustomSection", customSection);
            customSection.SectionInformation.ForceSave = true;
            config.Save(ConfigurationSaveMode.Full);
        }
    }
    catch (ConfigurationErrorsException err)
    {
        Console.WriteLine(err.ToString());
    }
}
' Create a custom section.
Shared Sub CreateSection()
   Try
      
      Dim customSection As CustomSection
      
      ' Get the current configuration file.
         Dim config As System.Configuration.Configuration = _
         ConfigurationManager.OpenExeConfiguration( _
         ConfigurationUserLevel.None)
      
      ' Create the section entry  
      ' in the <configSections> and the 
      ' related target section in <configuration>.
      If config.Sections("CustomSection") Is Nothing Then
         customSection = New CustomSection()
         config.Sections.Add("CustomSection", customSection)
         customSection.SectionInformation.ForceSave = True
         config.Save(ConfigurationSaveMode.Full)
      End If
   Catch err As ConfigurationErrorsException
      Console.WriteLine(err.ToString())
   End Try
End Sub

Comentarios

Para usar el ConfigurationSection constructor, primero debe definir un tipo de sección personalizado. Para obtener un ejemplo, consulte la información general de la ConfigurationSection clase.

Se aplica a