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 / ProtocolsConfigurationEntry.cs / 1 / ProtocolsConfigurationEntry.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 ProtocolsConfigurationEntry { private String _id; private String _processHandlerTypeName; private Type _processHandlerType; private String _appDomainHandlerTypeName; private Type _appDomainHandlerType; private bool _typesValidated; private String _configFileName; private int _configFileLine; internal ProtocolsConfigurationEntry( String id, String processHandlerType, String appDomainHandlerType, bool validate, String configFileName, int configFileLine) { _id = id; _processHandlerTypeName = processHandlerType; _appDomainHandlerTypeName = appDomainHandlerType; _configFileName = configFileName; _configFileLine = configFileLine; if (validate) { ValidateTypes(); } } private void ValidateTypes() { if (_typesValidated) return; // check process protocol handler Type processHandlerType; try { processHandlerType = Type.GetType(_processHandlerTypeName, true /*throwOnError*/); } catch (Exception e) { throw new ConfigurationErrorsException(e.Message, e, _configFileName, _configFileLine); } HandlerBase.CheckAssignableType(_configFileName, _configFileLine, typeof(ProcessProtocolHandler), processHandlerType); // check app domain protocol handler Type appDomainHandlerType; try { appDomainHandlerType = Type.GetType(_appDomainHandlerTypeName, true /*throwOnError*/); } catch (Exception e) { throw new ConfigurationErrorsException(e.Message, e, _configFileName, _configFileLine); } HandlerBase.CheckAssignableType(_configFileName, _configFileLine, typeof(AppDomainProtocolHandler), appDomainHandlerType); // remember types _processHandlerType = processHandlerType; _appDomainHandlerType = appDomainHandlerType; _typesValidated = true; } } } // 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 ProtocolsConfigurationEntry { private String _id; private String _processHandlerTypeName; private Type _processHandlerType; private String _appDomainHandlerTypeName; private Type _appDomainHandlerType; private bool _typesValidated; private String _configFileName; private int _configFileLine; internal ProtocolsConfigurationEntry( String id, String processHandlerType, String appDomainHandlerType, bool validate, String configFileName, int configFileLine) { _id = id; _processHandlerTypeName = processHandlerType; _appDomainHandlerTypeName = appDomainHandlerType; _configFileName = configFileName; _configFileLine = configFileLine; if (validate) { ValidateTypes(); } } private void ValidateTypes() { if (_typesValidated) return; // check process protocol handler Type processHandlerType; try { processHandlerType = Type.GetType(_processHandlerTypeName, true /*throwOnError*/); } catch (Exception e) { throw new ConfigurationErrorsException(e.Message, e, _configFileName, _configFileLine); } HandlerBase.CheckAssignableType(_configFileName, _configFileLine, typeof(ProcessProtocolHandler), processHandlerType); // check app domain protocol handler Type appDomainHandlerType; try { appDomainHandlerType = Type.GetType(_appDomainHandlerTypeName, true /*throwOnError*/); } catch (Exception e) { throw new ConfigurationErrorsException(e.Message, e, _configFileName, _configFileLine); } HandlerBase.CheckAssignableType(_configFileName, _configFileLine, typeof(AppDomainProtocolHandler), appDomainHandlerType); // remember types _processHandlerType = processHandlerType; _appDomainHandlerType = appDomainHandlerType; _typesValidated = true; } } } // 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
- Internal.cs
- SqlBulkCopyColumnMappingCollection.cs
- GenericXmlSecurityToken.cs
- DataGridViewBindingCompleteEventArgs.cs
- TagElement.cs
- NotCondition.cs
- FileDetails.cs
- XPathAxisIterator.cs
- PropertyItemInternal.cs
- DbMetaDataFactory.cs
- OleDbRowUpdatedEvent.cs
- ComboBox.cs
- MetadataFile.cs
- MemoryRecordBuffer.cs
- BindingExpressionUncommonField.cs
- TimeIntervalCollection.cs
- DesignerSerializationOptionsAttribute.cs
- XmlImplementation.cs
- OrderByBuilder.cs
- UmAlQuraCalendar.cs
- DataGridViewImageCell.cs
- TreeViewItemAutomationPeer.cs
- BufferedOutputStream.cs
- HeaderUtility.cs
- PolicyVersion.cs
- ToolCreatedEventArgs.cs
- UIElementHelper.cs
- SoapReflectionImporter.cs
- RecognizedWordUnit.cs
- SettingsContext.cs
- BinaryFormatterWriter.cs
- XmlDataLoader.cs
- InlineUIContainer.cs
- MetaForeignKeyColumn.cs
- TextEditorSelection.cs
- ResourceSet.cs
- XmlSerializerVersionAttribute.cs
- SignatureDescription.cs
- ButtonBaseAutomationPeer.cs
- WindowsSecurityToken.cs
- MediaPlayer.cs
- IgnoreFlushAndCloseStream.cs
- ToolStripSystemRenderer.cs
- CompressionTransform.cs
- DefaultAsyncDataDispatcher.cs
- TextSpanModifier.cs
- ToolStripRenderer.cs
- UIElement.cs
- TdsParserSafeHandles.cs
- StorageModelBuildProvider.cs
- CharAnimationBase.cs
- TypeDescriptionProvider.cs
- TemplateControlParser.cs
- SpeechSeg.cs
- Durable.cs
- TreeBuilderXamlTranslator.cs
- FloaterParaClient.cs
- DescriptionAttribute.cs
- EpmCustomContentWriterNodeData.cs
- DbConnectionFactory.cs
- VersionPair.cs
- HtmlToClrEventProxy.cs
- IOException.cs
- ListSortDescription.cs
- InternalsVisibleToAttribute.cs
- SpAudioStreamWrapper.cs
- UnaryNode.cs
- IdentityReference.cs
- ImageCodecInfo.cs
- X509ChainElement.cs
- TableColumn.cs
- ConstructorNeedsTagAttribute.cs
- BooleanToSelectiveScrollingOrientationConverter.cs
- PlanCompilerUtil.cs
- PowerStatus.cs
- autovalidator.cs
- UriScheme.cs
- ReferenceSchema.cs
- RightsManagementInformation.cs
- DataList.cs
- TypedDataSourceCodeGenerator.cs
- PatternMatcher.cs
- AlgoModule.cs
- Brush.cs
- CompilerError.cs
- MethodBuilderInstantiation.cs
- Misc.cs
- BinaryCommonClasses.cs
- CompatibleIComparer.cs
- DesignTimeTemplateParser.cs
- Utils.cs
- PropertyDescriptorCollection.cs
- DebugHandleTracker.cs
- SectionXmlInfo.cs
- BindingWorker.cs
- SuppressMergeCheckAttribute.cs
- SqlMethodAttribute.cs
- XmlWrappingWriter.cs
- SqlCommand.cs
- CalloutQueueItem.cs