Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- SqlFunctionAttribute.cs
- HMAC.cs
- __ConsoleStream.cs
- Lasso.cs
- EntitySqlQueryState.cs
- InvalidWMPVersionException.cs
- TypeSystem.cs
- HyperlinkAutomationPeer.cs
- Group.cs
- MimeMultiPart.cs
- ClientConfigurationSystem.cs
- LinqDataSourceInsertEventArgs.cs
- TableDetailsCollection.cs
- ScrollProviderWrapper.cs
- MembershipSection.cs
- ACE.cs
- CatalogZoneBase.cs
- PlatformNotSupportedException.cs
- EndpointReference.cs
- ButtonAutomationPeer.cs
- GeneralTransform3D.cs
- SafeArrayRankMismatchException.cs
- ExpressionBuilderContext.cs
- WebPartExportVerb.cs
- ListBoxItemWrapperAutomationPeer.cs
- DataGridLinkButton.cs
- FormattedText.cs
- TransformGroup.cs
- ModulesEntry.cs
- PreservationFileReader.cs
- LineSegment.cs
- ListControlDataBindingHandler.cs
- AppDomainShutdownMonitor.cs
- TimerExtension.cs
- Propagator.JoinPropagator.JoinPredicateVisitor.cs
- SafeNativeMethods.cs
- _FixedSizeReader.cs
- ItemCheckedEvent.cs
- InstancePersistence.cs
- HttpHandlerAction.cs
- FlowDecision.cs
- DataGridViewSelectedCellCollection.cs
- ColorConvertedBitmapExtension.cs
- SortedDictionary.cs
- IsolatedStorageFile.cs
- FrameSecurityDescriptor.cs
- SystemTcpConnection.cs
- RelativeSource.cs
- TablePatternIdentifiers.cs
- ExceptionHandlerDesigner.cs
- AxisAngleRotation3D.cs
- ReferencedCollectionType.cs
- InvalidateEvent.cs
- SecurityPermission.cs
- TableRowGroup.cs
- PasswordPropertyTextAttribute.cs
- SqlVersion.cs
- DateRangeEvent.cs
- GridViewRowCollection.cs
- DataGridViewColumnEventArgs.cs
- SynchronizationLockException.cs
- StorageAssociationSetMapping.cs
- HGlobalSafeHandle.cs
- QueuePathDialog.cs
- XmlSchemaAppInfo.cs
- FormatConvertedBitmap.cs
- XamlHostingSectionGroup.cs
- ProfileService.cs
- WindowsGraphics2.cs
- PageTheme.cs
- HtmlTextArea.cs
- LineServicesRun.cs
- FamilyCollection.cs
- OperationParameterInfo.cs
- DataViewListener.cs
- RSAPKCS1SignatureDeformatter.cs
- GenerateScriptTypeAttribute.cs
- XamlPathDataSerializer.cs
- SecurityPermission.cs
- ContentDefinition.cs
- RayMeshGeometry3DHitTestResult.cs
- UserUseLicenseDictionaryLoader.cs
- OwnerDrawPropertyBag.cs
- HMACRIPEMD160.cs
- CounterSampleCalculator.cs
- ToolStripDropDownButton.cs
- TrackingServices.cs
- ControlPropertyNameConverter.cs
- SqlNodeTypeOperators.cs
- WebServiceAttribute.cs
- BrowserCapabilitiesFactoryBase.cs
- SoapServerProtocol.cs
- WebControlParameterProxy.cs
- ParagraphResult.cs
- EntityClassGenerator.cs
- EqualityComparer.cs
- WebBrowserPermission.cs
- StringDictionary.cs
- Exceptions.cs
- PropertyMapper.cs