System.Configuration.ConfigurationErrorsException.ConfigurationErrorsException C# (CSharp) Метод

ConfigurationErrorsException() приватный Метод

private ConfigurationErrorsException ( ArrayList coll ) : System.Configuration.Internal
coll System.Collections.ArrayList
Результат System.Configuration.Internal
        internal ConfigurationErrorsException(ArrayList coll) :
                this((ConfigurationException) (coll.Count > 0 ? coll[0] : null)) {

            if (coll.Count > 1) {
                _errors = new ConfigurationException[coll.Count];
                coll.CopyTo(_errors, 0);
                
                foreach (object error in _errors) {
                    // force an illegal typecast exception if the object is not
                    // of the right type
                    ConfigurationException exception = (ConfigurationException) error;
                }
            }
        }

Same methods

ConfigurationErrorsException::ConfigurationErrorsException ( ) : System.Configuration.Internal
ConfigurationErrorsException::ConfigurationErrorsException ( ConfigurationException e ) : System.Configuration.Internal
ConfigurationErrorsException::ConfigurationErrorsException ( ICollection coll ) : System.Configuration.Internal
ConfigurationErrorsException::ConfigurationErrorsException ( SerializationInfo info, StreamingContext context ) : System.Configuration.Internal
ConfigurationErrorsException::ConfigurationErrorsException ( string message ) : System.Configuration.Internal
ConfigurationErrorsException::ConfigurationErrorsException ( string message, Exception inner ) : System.Configuration.Internal
ConfigurationErrorsException::ConfigurationErrorsException ( string message, Exception inner, IConfigErrorInfo errorInfo ) : System.Configuration.Internal
ConfigurationErrorsException::ConfigurationErrorsException ( string message, Exception inner, XmlNode node ) : System.Configuration.Internal
ConfigurationErrorsException::ConfigurationErrorsException ( string message, Exception inner, XmlReader reader ) : System.Configuration.Internal
ConfigurationErrorsException::ConfigurationErrorsException ( string message, Exception inner, string filename, int line ) : System.Configuration.Internal
ConfigurationErrorsException::ConfigurationErrorsException ( string message, IConfigErrorInfo errorInfo ) : System.Configuration.Internal
ConfigurationErrorsException::ConfigurationErrorsException ( string message, XmlNode node ) : System.Configuration.Internal
ConfigurationErrorsException::ConfigurationErrorsException ( string message, XmlReader reader ) : System.Configuration.Internal
ConfigurationErrorsException::ConfigurationErrorsException ( string message, string filename, int line ) : System.Configuration.Internal