System.Configuration.ConfigurationSchemaErrors.HasErrors C# (CSharp) Method

HasErrors() private method

private HasErrors ( bool ignoreLocal ) : bool
ignoreLocal bool
return bool
        internal bool HasErrors(bool ignoreLocal) {
            if (ignoreLocal) {
                return HasGlobalErrors;
            }
            else {
                return HasAllErrors;
            }
        }