Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Configuration / ProtocolsConfigurationEntry.cs / 2 / 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; } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- JournalNavigationScope.cs
- RootBrowserWindow.cs
- BitmapEffectDrawingContextState.cs
- XmlSortKey.cs
- BamlWriter.cs
- SchemaSetCompiler.cs
- CultureSpecificStringDictionary.cs
- UnsafeNativeMethodsTablet.cs
- XmlTextReaderImpl.cs
- DispatchWrapper.cs
- TargetException.cs
- HtmlShimManager.cs
- StylusEventArgs.cs
- PolyBezierSegmentFigureLogic.cs
- ReadOnlyDataSourceView.cs
- DbMetaDataCollectionNames.cs
- _ListenerResponseStream.cs
- _BufferOffsetSize.cs
- WorkflowServiceAttributes.cs
- XhtmlBasicLiteralTextAdapter.cs
- InternalCache.cs
- ReadOnlyHierarchicalDataSourceView.cs
- FlowchartSizeFeature.cs
- BuildProviderCollection.cs
- HMACSHA1.cs
- DesigntimeLicenseContext.cs
- Subtract.cs
- SessionStateModule.cs
- EntityCommandExecutionException.cs
- SelectedDatesCollection.cs
- PixelFormat.cs
- ResourcePermissionBase.cs
- RoleManagerEventArgs.cs
- ClientSideQueueItem.cs
- ValidationEventArgs.cs
- CommandID.cs
- TreeViewDesigner.cs
- Win32MouseDevice.cs
- HtmlValidatorAdapter.cs
- mil_commands.cs
- PrintPreviewControl.cs
- ManualWorkflowSchedulerService.cs
- WindowPatternIdentifiers.cs
- BitSet.cs
- ListViewItem.cs
- XmlSchemaComplexContent.cs
- BaseAppDomainProtocolHandler.cs
- MissingMemberException.cs
- EmbeddedMailObjectsCollection.cs
- VectorConverter.cs
- StreamWithDictionary.cs
- TableDetailsRow.cs
- _ConnectionGroup.cs
- ImageBrush.cs
- DataDocumentXPathNavigator.cs
- SecurityKeyEntropyMode.cs
- DataExpression.cs
- DataGridViewButtonColumn.cs
- ValidationRule.cs
- TextParagraph.cs
- SplitContainer.cs
- TextContainerHelper.cs
- SmtpReplyReaderFactory.cs
- SHA512.cs
- CodeGenerator.cs
- HttpModuleActionCollection.cs
- ResourceManager.cs
- ConnectionOrientedTransportChannelListener.cs
- XmlSchemas.cs
- DataGridViewRowCancelEventArgs.cs
- RuntimeConfigLKG.cs
- Thread.cs
- QilStrConcatenator.cs
- PageStatePersister.cs
- XmlTypeMapping.cs
- ProviderConnectionPoint.cs
- BuildTopDownAttribute.cs
- DesignerProperties.cs
- XmlIlVisitor.cs
- SymbolEqualComparer.cs
- Point3DAnimationBase.cs
- SemanticResolver.cs
- BindingContext.cs
- ProviderUtil.cs
- AxisAngleRotation3D.cs
- LabelInfo.cs
- RuleInfoComparer.cs
- DataBoundControlHelper.cs
- RotationValidation.cs
- DeferrableContentConverter.cs
- FocusTracker.cs
- DataSourceView.cs
- Floater.cs
- ExpressionBinding.cs
- ExpressionBuilderCollection.cs
- SoapMessage.cs
- Row.cs
- SessionIDManager.cs
- SqlCacheDependencyDatabaseCollection.cs
- Int32EqualityComparer.cs