// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. namespace WixToolset.Mba.Host { using System; using System.Configuration; /// /// Handler for the wix.bootstrapper configuration section group. /// public class BootstrapperSectionGroup : ConfigurationSectionGroup { /// /// Creates a new instance of the class. /// public BootstrapperSectionGroup() { } /// /// Gets the handler for the mba configuration section. /// [ConfigurationProperty("host")] public HostSection Host { get { return (HostSection)base.Sections["host"]; } } } }