20 references to ErrorsHelper
System.Configuration.ConfigurationManager (20)
System\Configuration\ConfigurationSchemaErrors.cs (10)
24internal bool HasLocalErrors => ErrorsHelper.GetHasErrors(_errorsLocal); 26internal bool HasGlobalErrors => ErrorsHelper.GetHasErrors(_errorsGlobal); 28private bool HasAllErrors => ErrorsHelper.GetHasErrors(_errorsAll); 30internal int GlobalErrorCount => ErrorsHelper.GetErrorCount(_errorsGlobal); 37ErrorsHelper.AddError(ref _errorsAll, ce); 38ErrorsHelper.AddError(ref _errorsGlobal, ce); 41ErrorsHelper.AddError(ref _errorsAll, ce); 44ErrorsHelper.AddError(ref _errorsLocal, ce); 83if (keepLocalErrors) ErrorsHelper.AddErrors(ref _errorsAll, list); 90ErrorsHelper.AddErrors(ref _errorsAll, coll);
System\Configuration\FactoryRecord.cs (3)
158internal bool HasErrors => ErrorsHelper.GetHasErrors(_errors); 258ErrorsHelper.AddErrors(ref _errors, coll); 263ErrorsHelper.ThrowOnErrors(_errors);
System\Configuration\LocationSectionRecord.cs (2)
29internal bool HasErrors => ErrorsHelper.GetHasErrors(_errors); 33ErrorsHelper.AddError(ref _errors, e);
System\Configuration\SectionInput.cs (2)
55internal bool HasErrors => ErrorsHelper.GetHasErrors(_errors); 65ErrorsHelper.ThrowOnErrors(_errors);
System\Configuration\SectionRecord.cs (3)
279foreach (SectionInput input in LocationInputs) ErrorsHelper.AddErrors(ref allErrors, input.Errors); 284ErrorsHelper.AddErrors(ref allErrors, input.Errors); 287if (HasFileInput) ErrorsHelper.AddErrors(ref allErrors, FileInput.Errors);