System.Configuration.ClientConfigurationSystem.PrepareClientConfigSystem C# (CSharp) 메소드

PrepareClientConfigSystem() 개인적인 메소드

private PrepareClientConfigSystem ( string sectionName ) : void
sectionName string
리턴 void
        private void PrepareClientConfigSystem(string sectionName) {
            // Ensure the configuration system is inited for this section.
            if (!_isUserConfigInited) {
                EnsureInit(sectionName);
            }

            // If an error occurred during initialzation, throw it.
            if (_initError != null) {
                throw _initError;
            }
        }