Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / 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; // 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); // 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. //------------------------------------------------------------------------------ //// 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; // 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); // 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FactoryGenerator.cs
- SoapCodeExporter.cs
- AttributeAction.cs
- DefaultShape.cs
- PropertyPathWorker.cs
- Knowncolors.cs
- UseManagedPresentationBindingElement.cs
- SecurityDescriptor.cs
- StatusBarDrawItemEvent.cs
- NavigateEvent.cs
- AttachmentCollection.cs
- ViewManagerAttribute.cs
- KnownBoxes.cs
- FileDialogCustomPlace.cs
- COMException.cs
- GifBitmapEncoder.cs
- StateBag.cs
- ControlAdapter.cs
- WindowsFont.cs
- _NTAuthentication.cs
- ObjectSecurity.cs
- EventMetadata.cs
- ArraySegment.cs
- ExitEventArgs.cs
- ExpressionBinding.cs
- InstancePersistenceEvent.cs
- XamlToRtfWriter.cs
- Bitmap.cs
- HtmlElementCollection.cs
- WebPartHelpVerb.cs
- UTF7Encoding.cs
- SequenceDesigner.xaml.cs
- ErrorItem.cs
- RuntimeArgumentHandle.cs
- AuthenticationSection.cs
- ScriptMethodAttribute.cs
- WebResourceUtil.cs
- WebBaseEventKeyComparer.cs
- CallbackHandler.cs
- TaskForm.cs
- SqlNotificationEventArgs.cs
- XmlDocument.cs
- _ProxyRegBlob.cs
- Deserializer.cs
- TreePrinter.cs
- HostedHttpTransportManager.cs
- LineGeometry.cs
- InteropAutomationProvider.cs
- Material.cs
- EmbeddedMailObject.cs
- SqlUserDefinedTypeAttribute.cs
- ObjectItemCollection.cs
- PostBackTrigger.cs
- XmlTypeAttribute.cs
- DSACryptoServiceProvider.cs
- IQueryable.cs
- TrackBarDesigner.cs
- DataGridViewUtilities.cs
- SectionXmlInfo.cs
- BuildProvidersCompiler.cs
- CopyOnWriteList.cs
- BidPrivateBase.cs
- StoragePropertyMapping.cs
- RecordBuilder.cs
- Vector3DCollection.cs
- ValueSerializerAttribute.cs
- ParseHttpDate.cs
- bidPrivateBase.cs
- XmlRootAttribute.cs
- _ConnectOverlappedAsyncResult.cs
- AsyncPostBackTrigger.cs
- PropertyIDSet.cs
- ColorTransformHelper.cs
- RemoteCryptoDecryptRequest.cs
- SystemKeyConverter.cs
- WebPartHelpVerb.cs
- RoutedEvent.cs
- TextSerializer.cs
- DataTableMappingCollection.cs
- FileRecordSequence.cs
- ApplicationActivator.cs
- UdpSocket.cs
- SQLConvert.cs
- XmlDeclaration.cs
- DataGridAutoFormat.cs
- ReadContentAsBinaryHelper.cs
- AdjustableArrowCap.cs
- ButtonPopupAdapter.cs
- SchemaElement.cs
- SpinWait.cs
- XmlUtil.cs
- XmlDataLoader.cs
- TextRunTypographyProperties.cs
- QilValidationVisitor.cs
- Pair.cs
- FormViewPagerRow.cs
- DataGridViewCellValueEventArgs.cs
- DataFieldConverter.cs
- IntSecurity.cs
- SharedStream.cs