Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / ModuleConfigurationInfo.cs / 1305376 / ModuleConfigurationInfo.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web { using System; using System.Threading; using System.Configuration; using System.Web.Compilation; using System.Web.Util; // used by HttpApplication to keep track of configuration // info read by native config internal class ModuleConfigurationInfo { string _type; string _name; string _precondition; internal ModuleConfigurationInfo(string name, string type, string condition) { _type = type; _name = name; _precondition = condition; } internal string Type { get { return _type; } } internal string Name { get { return _name; } } internal string Precondition { get { return _precondition; } } } } // 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
- SecurityPermission.cs
- RepeatInfo.cs
- CompilationUtil.cs
- TypefaceMap.cs
- BamlRecordReader.cs
- CryptoKeySecurity.cs
- PrivateUnsafeNativeCompoundFileMethods.cs
- Vector3DCollectionValueSerializer.cs
- EventLogPermission.cs
- ComponentResourceKey.cs
- SchemaTypeEmitter.cs
- ColumnClickEvent.cs
- IndicShape.cs
- HtmlInputSubmit.cs
- ScrollEvent.cs
- PrimaryKeyTypeConverter.cs
- DataServiceConfiguration.cs
- DbParameterCollectionHelper.cs
- ActivityBindForm.Designer.cs
- QuadraticBezierSegment.cs
- InkPresenterAutomationPeer.cs
- SmiSettersStream.cs
- SecureUICommand.cs
- SqlDataSourceRefreshSchemaForm.cs
- ResourceReferenceKeyNotFoundException.cs
- HttpChannelBindingToken.cs
- LineVisual.cs
- Variable.cs
- TemplateNameScope.cs
- DataGridViewTopRowAccessibleObject.cs
- SecurityTokenRequirement.cs
- Pen.cs
- CompiledQuery.cs
- SelectionChangedEventArgs.cs
- DetailsViewInsertEventArgs.cs
- PropertyFilter.cs
- TextBoxBaseDesigner.cs
- CellLabel.cs
- CodeTypeParameterCollection.cs
- DataContractJsonSerializer.cs
- Domain.cs
- WebServiceErrorEvent.cs
- ConfigurationManager.cs
- SafeRightsManagementQueryHandle.cs
- SqlFunctionAttribute.cs
- LinkTarget.cs
- IConvertible.cs
- DirectoryInfo.cs
- TextBounds.cs
- EventlogProvider.cs
- TransformedBitmap.cs
- BrushValueSerializer.cs
- TransactionsSectionGroup.cs
- FileStream.cs
- ItemCheckedEvent.cs
- UnsafeNativeMethods.cs
- ToolStripContainer.cs
- XsltSettings.cs
- ByteConverter.cs
- CorrelationTokenInvalidatedHandler.cs
- BrowserDefinitionCollection.cs
- Stopwatch.cs
- SystemEvents.cs
- WebPartEditorOkVerb.cs
- HttpContextWrapper.cs
- GcSettings.cs
- Attribute.cs
- SqlUdtInfo.cs
- WrappedIUnknown.cs
- KnownTypesProvider.cs
- IndexerNameAttribute.cs
- FocusChangedEventArgs.cs
- PasswordDeriveBytes.cs
- DesignerResources.cs
- MD5Cng.cs
- SecurityProtocolFactory.cs
- TokenCreationParameter.cs
- PtsHelper.cs
- IndentedTextWriter.cs
- WeakReadOnlyCollection.cs
- CqlBlock.cs
- ToolStripItem.cs
- UDPClient.cs
- CrossAppDomainChannel.cs
- StaticExtension.cs
- ChildrenQuery.cs
- WorkflowMarkupElementEventArgs.cs
- PackagingUtilities.cs
- AssemblyFilter.cs
- WebSysDisplayNameAttribute.cs
- GeometryCollection.cs
- XmlSchemaValidator.cs
- AsyncContentLoadedEventArgs.cs
- GlobalEventManager.cs
- Slider.cs
- Highlights.cs
- Attributes.cs
- WindowsGraphicsWrapper.cs
- MenuItemBinding.cs
- AnnouncementEndpoint.cs