Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / Configuration / ProtocolsConfiguration.cs / 1 / ProtocolsConfiguration.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Configuration { using System.IO; using System.Runtime.Serialization.Formatters; using System.Threading; using System.Runtime.InteropServices; using System.ComponentModel; using System.Collections; using System.Configuration; using System.Reflection; using System.Globalization; using System.Web.Hosting; using System.Web.Security; using System.Web.Util; using System.Xml; internal class ProtocolsConfiguration { private Hashtable _protocolEntries = new Hashtable(); internal ProtocolsConfiguration(XmlNode section) { // process XML section in order and apply the directives HandlerBase.CheckForUnrecognizedAttributes(section); foreach (XmlNode child in section.ChildNodes) { // skip whitespace and comments if (IsIgnorableAlsoCheckForNonElement(child)) continue; // processelements if (child.Name == "add") { String id = HandlerBase.RemoveRequiredAttribute(child, "id"); String phType = HandlerBase.RemoveRequiredAttribute(child, "processHandlerType"); String ahType = HandlerBase.RemoveRequiredAttribute(child, "appDomainHandlerType"); bool validate = true; HandlerBase.GetAndRemoveBooleanAttribute(child, "validate", ref validate); HandlerBase.CheckForUnrecognizedAttributes(child); HandlerBase.CheckForNonCommentChildNodes(child); // check duplicate Id /* TEMPORARY allow duplicates for easy Indigo machine.config update if (_protocolEntries[id] != null) { throw new ConfigurationErrorsException( SR.GetString(SR.Dup_protocol_id, id), child); } */ // add entry /* TEMPORARY hide errors and ignore bad tags to let breaking changes through */ try { _protocolEntries[id] = new ProtocolsConfigurationEntry( id, phType, ahType, validate, ConfigurationErrorsException.GetFilename(child), ConfigurationErrorsException.GetLineNumber(child)); } catch { } } else { HandlerBase.ThrowUnrecognizedElement(child); } } } private bool IsIgnorableAlsoCheckForNonElement(XmlNode node) { if (node.NodeType == XmlNodeType.Comment || node.NodeType == XmlNodeType.Whitespace) { return true; } if (node.NodeType != XmlNodeType.Element) { throw new ConfigurationErrorsException( SR.GetString(SR.Config_base_elements_only), node); } return false; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Configuration { using System.IO; using System.Runtime.Serialization.Formatters; using System.Threading; using System.Runtime.InteropServices; using System.ComponentModel; using System.Collections; using System.Configuration; using System.Reflection; using System.Globalization; using System.Web.Hosting; using System.Web.Security; using System.Web.Util; using System.Xml; internal class ProtocolsConfiguration { private Hashtable _protocolEntries = new Hashtable(); internal ProtocolsConfiguration(XmlNode section) { // process XML section in order and apply the directives HandlerBase.CheckForUnrecognizedAttributes(section); foreach (XmlNode child in section.ChildNodes) { // skip whitespace and comments if (IsIgnorableAlsoCheckForNonElement(child)) continue; // processelements if (child.Name == "add") { String id = HandlerBase.RemoveRequiredAttribute(child, "id"); String phType = HandlerBase.RemoveRequiredAttribute(child, "processHandlerType"); String ahType = HandlerBase.RemoveRequiredAttribute(child, "appDomainHandlerType"); bool validate = true; HandlerBase.GetAndRemoveBooleanAttribute(child, "validate", ref validate); HandlerBase.CheckForUnrecognizedAttributes(child); HandlerBase.CheckForNonCommentChildNodes(child); // check duplicate Id /* TEMPORARY allow duplicates for easy Indigo machine.config update if (_protocolEntries[id] != null) { throw new ConfigurationErrorsException( SR.GetString(SR.Dup_protocol_id, id), child); } */ // add entry /* TEMPORARY hide errors and ignore bad tags to let breaking changes through */ try { _protocolEntries[id] = new ProtocolsConfigurationEntry( id, phType, ahType, validate, ConfigurationErrorsException.GetFilename(child), ConfigurationErrorsException.GetLineNumber(child)); } catch { } } else { HandlerBase.ThrowUnrecognizedElement(child); } } } private bool IsIgnorableAlsoCheckForNonElement(XmlNode node) { if (node.NodeType == XmlNodeType.Comment || node.NodeType == XmlNodeType.Whitespace) { return true; } if (node.NodeType != XmlNodeType.Element) { throw new ConfigurationErrorsException( SR.GetString(SR.Config_base_elements_only), node); } return false; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DbSetClause.cs
- MarginsConverter.cs
- SqlException.cs
- Win32.cs
- MDIControlStrip.cs
- OracleBinary.cs
- ExtendedProtectionPolicy.cs
- IncrementalHitTester.cs
- GridEntryCollection.cs
- HybridDictionary.cs
- ActivityInstanceMap.cs
- RelatedCurrencyManager.cs
- IntSecurity.cs
- StatusStrip.cs
- HTMLTagNameToTypeMapper.cs
- SimpleType.cs
- DrawingGroup.cs
- UniqueContractNameValidationBehavior.cs
- FilteredReadOnlyMetadataCollection.cs
- SafeNativeMethodsCLR.cs
- AcceleratedTokenAuthenticator.cs
- NamespaceImport.cs
- StateMachineExecutionState.cs
- AdornerLayer.cs
- TypeLibraryHelper.cs
- ContextStaticAttribute.cs
- CustomErrorCollection.cs
- TitleStyle.cs
- ClientOperation.cs
- FixedSOMPage.cs
- HtmlElementCollection.cs
- LocalizedNameDescriptionPair.cs
- MeshGeometry3D.cs
- RemoteWebConfigurationHostServer.cs
- ContextBase.cs
- InputBindingCollection.cs
- DataServiceStreamProviderWrapper.cs
- ListViewEditEventArgs.cs
- XmlSerializerOperationFormatter.cs
- ToolStripDropDownClosingEventArgs.cs
- DesignerForm.cs
- Util.cs
- SpotLight.cs
- HttpInputStream.cs
- GraphicsContext.cs
- TimeZone.cs
- EUCJPEncoding.cs
- SqlDataReaderSmi.cs
- Dynamic.cs
- LayoutEditorPart.cs
- InternalException.cs
- IFlowDocumentViewer.cs
- HtmlTable.cs
- Button.cs
- ProcessThreadDesigner.cs
- Transform3DGroup.cs
- MetadataExchangeClient.cs
- CompiledScopeCriteria.cs
- XmlUTF8TextWriter.cs
- SerializationSectionGroup.cs
- TypedTableBaseExtensions.cs
- FieldToken.cs
- SchemaType.cs
- EntityType.cs
- PageParser.cs
- HttpModule.cs
- HttpDictionary.cs
- SafeNativeMethods.cs
- DrawingContextWalker.cs
- xml.cs
- ViewStateException.cs
- EditorServiceContext.cs
- IsolationInterop.cs
- GridSplitterAutomationPeer.cs
- Overlapped.cs
- Delegate.cs
- TextEditorThreadLocalStore.cs
- PtsContext.cs
- COM2TypeInfoProcessor.cs
- MetaTable.cs
- SqlDataSourceCache.cs
- HierarchicalDataBoundControlAdapter.cs
- PointAnimationClockResource.cs
- FixedDocumentSequencePaginator.cs
- GenerateScriptTypeAttribute.cs
- SimpleBitVector32.cs
- ControlCommandSet.cs
- precedingsibling.cs
- FigureHelper.cs
- Ipv6Element.cs
- SessionStateSection.cs
- SvcMapFile.cs
- IsolationInterop.cs
- DbConnectionPoolOptions.cs
- SpeechDetectedEventArgs.cs
- XmlSchemaGroup.cs
- XmlSchemaSimpleTypeRestriction.cs
- BlurEffect.cs
- QueryHandler.cs
- XPathLexer.cs