Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Configuration / WebContext.cs / 3 / WebContext.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Configuration { using System; using System.Configuration; using System.Security.Permissions; // WebContext // // Represents the WebContext that we are running within // [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class WebContext { private WebApplicationLevel _pathLevel; private string _site; private string _applicationPath; private string _path; private string _locationSubPath; private string _appConfigPath; // Constructor // // public WebContext( WebApplicationLevel pathLevel, string site, string applicationPath, string path, string locationSubPath, string appConfigPath ) { _pathLevel = pathLevel; _site = site; _applicationPath = applicationPath; _path = path; _locationSubPath = locationSubPath; _appConfigPath = appConfigPath; } // // Retrieve the WebApplicationLevel we are being evaluated at // public WebApplicationLevel ApplicationLevel { get { return _pathLevel; } } // Site // // What is the name of the Site we are in? // public string Site { get { return _site; } } // ApplicationPath // // What is the Application Path for the Application we are // being evaluated in // // Return Values: // null - There is no application (ie. machine.config) // path - The path of our application // public string ApplicationPath { get { return _applicationPath; } } // Path // // What is the virtual path that we are being evaluated at? // public string Path { get { return _path; } } // LocationSubPath // // What is the location sub path that we are being evaluated for? // This will the same as the value inside the location tag // in the config file // // Return Values: // null - no associated location sub path. // (This is still the case for ".", "" and it not being // specified in the xml file) // string - The location path from the config file, after // normalization // public string LocationSubPath { get { return _locationSubPath; } } // WOS 1955773: (Perf) 4,000 location sections in web.config file degrades working set // Hack: this is the only way to get this to System.Configuration.BaseConfigurationRecord without introducing a new public API. public override string ToString() { return _appConfigPath; } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Positioning.cs
- ScrollViewer.cs
- Pkcs9Attribute.cs
- EventManager.cs
- streamingZipPartStream.cs
- WebControl.cs
- RightsManagementEncryptionTransform.cs
- OciEnlistContext.cs
- ExpandSegmentCollection.cs
- XmlSchemaType.cs
- ChunkedMemoryStream.cs
- ModelTreeEnumerator.cs
- DataObjectFieldAttribute.cs
- FormsAuthentication.cs
- ExceptionRoutedEventArgs.cs
- AsymmetricSignatureDeformatter.cs
- NameValueCollection.cs
- VirtualPath.cs
- Selection.cs
- SoapServerProtocol.cs
- Group.cs
- PropertyPathWorker.cs
- ListViewItemMouseHoverEvent.cs
- IDReferencePropertyAttribute.cs
- ResourceWriter.cs
- FilteredDataSetHelper.cs
- SessionIDManager.cs
- Overlapped.cs
- WebResourceAttribute.cs
- TextTreeTextBlock.cs
- JoinTreeSlot.cs
- MenuItemBinding.cs
- ExpressionCopier.cs
- WebPartManager.cs
- TimeSpanSecondsOrInfiniteConverter.cs
- ObjectStateEntryDbUpdatableDataRecord.cs
- MenuCommand.cs
- DisplayNameAttribute.cs
- WebColorConverter.cs
- CodeIdentifier.cs
- DiagnosticsConfigurationHandler.cs
- ListBox.cs
- ButtonChrome.cs
- _ConnectStream.cs
- ScriptingWebServicesSectionGroup.cs
- ResXBuildProvider.cs
- XmlNullResolver.cs
- MetadataArtifactLoaderCompositeFile.cs
- CodeIdentifier.cs
- Mapping.cs
- AbstractDataSvcMapFileLoader.cs
- ComboBoxAutomationPeer.cs
- StyleXamlParser.cs
- BinaryMethodMessage.cs
- DataAccessor.cs
- Cursors.cs
- ScrollBar.cs
- SpStreamWrapper.cs
- CacheVirtualItemsEvent.cs
- PolicyUtility.cs
- RemoteCryptoTokenProvider.cs
- XamlVector3DCollectionSerializer.cs
- ConnectionInterfaceCollection.cs
- ObjectStateEntryDbDataRecord.cs
- HuffmanTree.cs
- HttpHandlerAction.cs
- OperatorExpressions.cs
- Trace.cs
- ModelPropertyDescriptor.cs
- PrivilegeNotHeldException.cs
- ComponentManagerBroker.cs
- WebPartDisplayModeEventArgs.cs
- FontConverter.cs
- WinEventTracker.cs
- StateManagedCollection.cs
- Accessors.cs
- AsyncOperation.cs
- SqlNotificationRequest.cs
- PreviewKeyDownEventArgs.cs
- RepeaterDataBoundAdapter.cs
- GenerateTemporaryTargetAssembly.cs
- MenuStrip.cs
- Misc.cs
- FormViewRow.cs
- ArraySortHelper.cs
- MessageDescriptionCollection.cs
- FontWeightConverter.cs
- AspNetHostingPermission.cs
- DependencyObjectPropertyDescriptor.cs
- TimeSpanFormat.cs
- XmlValueConverter.cs
- SrgsText.cs
- ContainerUIElement3D.cs
- BaseParser.cs
- LayoutEvent.cs
- CodeTypeReferenceCollection.cs
- SystemDropShadowChrome.cs
- DesignBindingPropertyDescriptor.cs
- HyperLinkDataBindingHandler.cs
- LicenseProviderAttribute.cs