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

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

private RetrieveAndResetLocalErrors ( bool keepLocalErrors ) : List
keepLocalErrors bool
Результат List
        internal List<ConfigurationException> RetrieveAndResetLocalErrors(bool keepLocalErrors) {
            List<ConfigurationException> list = _errorsLocal;
            _errorsLocal = null;

            if (keepLocalErrors) {
                ErrorsHelper.AddErrors(ref _errorsAll, list);
            }

            return list;
        }