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;
        }