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