Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MetadataArtifactLoaderCompositeResource.cs
- FormattedText.cs
- BindUriHelper.cs
- X509Extension.cs
- MatrixAnimationUsingKeyFrames.cs
- MsmqOutputChannel.cs
- ExtentCqlBlock.cs
- OperandQuery.cs
- PersianCalendar.cs
- LayoutDump.cs
- TreeViewEvent.cs
- InputLanguageSource.cs
- NativeMethods.cs
- HybridDictionary.cs
- EdmTypeAttribute.cs
- EmptyReadOnlyDictionaryInternal.cs
- WindowsComboBox.cs
- SimpleWebHandlerParser.cs
- SchemaImporterExtensionsSection.cs
- SqlClientWrapperSmiStream.cs
- WeakRefEnumerator.cs
- CanExecuteRoutedEventArgs.cs
- PerformanceCountersElement.cs
- DataPager.cs
- MetafileHeaderWmf.cs
- VSWCFServiceContractGenerator.cs
- ComboBoxItem.cs
- Listbox.cs
- ExtendedPropertyInfo.cs
- TransactionFilter.cs
- SemanticResultValue.cs
- EventItfInfo.cs
- NameTable.cs
- DataGridItemCollection.cs
- RawStylusInputCustomDataList.cs
- XmlDictionaryWriter.cs
- Queue.cs
- SmtpNetworkElement.cs
- Resources.Designer.cs
- DataListItemEventArgs.cs
- AstTree.cs
- XmlSerializerFactory.cs
- OleDbDataAdapter.cs
- ContentFilePart.cs
- RuntimeResourceSet.cs
- WebBrowser.cs
- XPathDescendantIterator.cs
- StickyNoteAnnotations.cs
- XmlIncludeAttribute.cs
- RelatedPropertyManager.cs
- KeyboardDevice.cs
- XmlDictionaryString.cs
- EUCJPEncoding.cs
- EntitySqlQueryCacheEntry.cs
- HtmlElementEventArgs.cs
- ChangePassword.cs
- InvokePatternIdentifiers.cs
- UnconditionalPolicy.cs
- StylusPointDescription.cs
- SqlInfoMessageEvent.cs
- ItemCollection.cs
- UniqueIdentifierService.cs
- CharAnimationUsingKeyFrames.cs
- _LoggingObject.cs
- TemplateModeChangedEventArgs.cs
- TrackBarDesigner.cs
- AttachedPropertyInfo.cs
- WebPartMenu.cs
- SQLBoolean.cs
- HotSpotCollection.cs
- smtppermission.cs
- JapaneseCalendar.cs
- OleDbDataReader.cs
- SparseMemoryStream.cs
- QilIterator.cs
- WorkflowTimerService.cs
- HashMembershipCondition.cs
- TableLayoutPanel.cs
- Module.cs
- EdmToObjectNamespaceMap.cs
- sitestring.cs
- CodeIterationStatement.cs
- SafeSecurityHandles.cs
- Tile.cs
- ClosureBinding.cs
- WebPartZoneCollection.cs
- TabControlAutomationPeer.cs
- shaper.cs
- EditorOptionAttribute.cs
- SystemIPInterfaceStatistics.cs
- EmissiveMaterial.cs
- IIS7ConfigurationLoader.cs
- ListMarkerSourceInfo.cs
- CodeAttributeDeclaration.cs
- Variant.cs
- storepermission.cs
- InitializationEventAttribute.cs
- SimpleWorkerRequest.cs
- Pkcs9Attribute.cs
- SQLStringStorage.cs