internal static MicrosoftTeamsMAConfigSection GetConfiguration()
        {
            MicrosoftTeamsMAConfigSection section = (MicrosoftTeamsMAConfigSection)ConfigurationManager.GetSection(MicrosoftTeamsMAConfigSection.SectionName);

            if (section == null)
            {
                section = new MicrosoftTeamsMAConfigSection();
            }

            return(section);
        }
 static MicrosoftTeamsMAConfigSection()
 {
     MicrosoftTeamsMAConfigSection.Configuration = MicrosoftTeamsMAConfigSection.GetConfiguration();
 }