45 references to HandlerBase
System (45)
services\monitoring\system\diagnosticts\DiagnosticsConfigurationHandler.cs (22)
42HandlerBase.CheckForUnrecognizedAttributes(section); 54if (HandlerBase.IsIgnorableAlsoCheckForNonElement(child)) 87HandlerBase.ThrowUnrecognizedElement(child); 91HandlerBase.CheckForUnrecognizedAttributes(child); 113if (HandlerBase.GetAndRemoveBooleanAttribute(assertNode, "assertuienabled", ref assertuienabled) != null) 117if (HandlerBase.GetAndRemoveStringAttribute(assertNode, "logfilename", ref logfilename) != null) 120HandlerBase.CheckForChildNodes(assertNode); 125if (HandlerBase.GetAndRemoveIntegerAttribute(countersNode, "filemappingsize", ref filemappingsize) != null) { 131HandlerBase.CheckForChildNodes(countersNode); 137if (HandlerBase.GetAndRemoveBooleanAttribute(traceNode, "autoflush", ref autoflush) != null) 141if (HandlerBase.GetAndRemoveIntegerAttribute(traceNode, "indentsize", ref indentsize) != null) 145if (HandlerBase.IsIgnorableAlsoCheckForNonElement(traceChild)) 156HandlerBase.ThrowUnrecognizedElement(traceChild); 162HandlerBase.CheckForUnrecognizedAttributes(listenersNode); 164if (HandlerBase.IsIgnorableAlsoCheckForNonElement(listenersChild)) 176HandlerBase.ThrowUnrecognizedElement(listenersChild); 180HandlerBase.GetAndRemoveStringAttribute(listenersChild, "name", ref name); 181HandlerBase.GetAndRemoveStringAttribute(listenersChild, "type", ref className); 182HandlerBase.GetAndRemoveStringAttribute(listenersChild, "initializeData", ref initializeData); 183HandlerBase.CheckForUnrecognizedAttributes(listenersChild); 184HandlerBase.CheckForChildNodes(listenersChild); 244HandlerBase.ThrowUnrecognizedElement(listenersChild);
sys\system\configuration\DictionarySectionHandler.cs (13)
41HandlerBase.CheckForUnrecognizedAttributes(section); 46if (HandlerBase.IsIgnorableAlsoCheckForNonElement(child)) 51HandlerBase.CheckForChildNodes(child); 52String key = HandlerBase.RemoveRequiredAttribute(child, KeyAttributeName); 55value = HandlerBase.RemoveRequiredAttribute(child, ValueAttributeName); 57value = HandlerBase.RemoveAttribute(child, ValueAttributeName); 58HandlerBase.CheckForUnrecognizedAttributes(child); 66HandlerBase.CheckForChildNodes(child); 67String key = HandlerBase.RemoveRequiredAttribute(child, KeyAttributeName); 68HandlerBase.CheckForUnrecognizedAttributes(child); 73HandlerBase.CheckForChildNodes(child); 74HandlerBase.CheckForUnrecognizedAttributes(child); 78HandlerBase.ThrowUnrecognizedElement(child);
sys\system\configuration\NameValueSectionHandler.cs (9)
45HandlerBase.CheckForUnrecognizedAttributes(section); 50if (HandlerBase.IsIgnorableAlsoCheckForNonElement(child)) 55String key = HandlerBase.RemoveRequiredAttribute(child, keyAttriuteName); 56String value = HandlerBase.RemoveRequiredAttribute(child, valueAttributeName, true/*allowEmptyString*/); 57HandlerBase.CheckForUnrecognizedAttributes(child); 62String key = HandlerBase.RemoveRequiredAttribute(child, keyAttriuteName); 63HandlerBase.CheckForUnrecognizedAttributes(child); 68HandlerBase.CheckForUnrecognizedAttributes(child); 72HandlerBase.ThrowUnrecognizedElement(child);
sys\system\configuration\SingleTagSectionHandler.cs (1)
41HandlerBase.CheckForChildNodes(section);