Code:
/ DotNET / DotNET / 8.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
- ADMembershipUser.cs
- PersistChildrenAttribute.cs
- RunWorkerCompletedEventArgs.cs
- EventToken.cs
- Error.cs
- SettingsPropertyWrongTypeException.cs
- _DomainName.cs
- IItemContainerGenerator.cs
- ParseElement.cs
- ListParaClient.cs
- ByteKeyFrameCollection.cs
- PassportAuthenticationModule.cs
- Control.cs
- UnionCqlBlock.cs
- CheckBoxField.cs
- X509Chain.cs
- MissingManifestResourceException.cs
- HostSecurityManager.cs
- RawStylusSystemGestureInputReport.cs
- BitmapMetadataBlob.cs
- UnsafeNativeMethodsCLR.cs
- SettingsBase.cs
- NativeMethods.cs
- AnnotationResourceChangedEventArgs.cs
- RefExpr.cs
- NetworkInformationException.cs
- SqlDataSourceCache.cs
- SafeNativeMethodsCLR.cs
- AtlasWeb.Designer.cs
- ConfigPathUtility.cs
- WSFederationHttpSecurity.cs
- SemanticResolver.cs
- XmlBinaryWriterSession.cs
- CompensatableTransactionScopeActivityDesigner.cs
- PersonalizationDictionary.cs
- Expressions.cs
- Variable.cs
- ApplicationTrust.cs
- DtcInterfaces.cs
- GridEntryCollection.cs
- WsatServiceAddress.cs
- CodeSnippetTypeMember.cs
- ThrowHelper.cs
- DbDataAdapter.cs
- OpenFileDialog.cs
- FileDialog_Vista_Interop.cs
- IndexedEnumerable.cs
- DispatcherEventArgs.cs
- CLSCompliantAttribute.cs
- XmlSchemaAttributeGroupRef.cs
- Rules.cs
- EventTrigger.cs
- Condition.cs
- LineBreak.cs
- HttpModuleAction.cs
- ResponseStream.cs
- ParseElement.cs
- UserControlAutomationPeer.cs
- BehaviorService.cs
- InputScopeNameConverter.cs
- ReadOnlyDictionary.cs
- WriteTimeStream.cs
- TrackBarRenderer.cs
- FontStyle.cs
- DataListItem.cs
- EmptyStringExpandableObjectConverter.cs
- XmlNamedNodeMap.cs
- IChannel.cs
- FileLogRecordHeader.cs
- MultiAsyncResult.cs
- EventToken.cs
- MasterPage.cs
- TriState.cs
- StylusTip.cs
- MultiPropertyDescriptorGridEntry.cs
- XmlProcessingInstruction.cs
- ReferentialConstraint.cs
- BrushValueSerializer.cs
- AutomationIdentifierGuids.cs
- Animatable.cs
- ThemeDictionaryExtension.cs
- ListItemCollection.cs
- InputReport.cs
- IIS7UserPrincipal.cs
- EntityKey.cs
- InputScopeNameConverter.cs
- HttpEncoder.cs
- Ops.cs
- BooleanToSelectiveScrollingOrientationConverter.cs
- ListViewGroupConverter.cs
- PolyLineSegment.cs
- PrivilegeNotHeldException.cs
- ImageSourceConverter.cs
- RegexBoyerMoore.cs
- MaterialGroup.cs
- Tuple.cs
- MethodImplAttribute.cs
- LinkClickEvent.cs
- TabItem.cs
- SqlDataSourceParameterParser.cs