Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / Configuration / WebContext.cs / 1 / 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; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// 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; } } } // 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
- NodeLabelEditEvent.cs
- AssociatedControlConverter.cs
- WSDualHttpBindingCollectionElement.cs
- SafeNativeMethods.cs
- Int64KeyFrameCollection.cs
- SingleTagSectionHandler.cs
- DataColumn.cs
- ScriptReferenceBase.cs
- ImpersonateTokenRef.cs
- StrokeNode.cs
- SqlProviderServices.cs
- AsnEncodedData.cs
- SystemResources.cs
- ErrorView.xaml.cs
- DecodeHelper.cs
- ConnectionStringSettingsCollection.cs
- SnapshotChangeTrackingStrategy.cs
- ScrollBar.cs
- OpenTypeLayoutCache.cs
- BypassElementCollection.cs
- DataObjectMethodAttribute.cs
- RegistrationServices.cs
- SynchronizedInputPattern.cs
- FormsAuthenticationTicket.cs
- ModelItemKeyValuePair.cs
- TcpStreams.cs
- Rss20FeedFormatter.cs
- ProgressBar.cs
- FontStyles.cs
- SQLSingle.cs
- MetadataException.cs
- CharEntityEncoderFallback.cs
- QueuePathEditor.cs
- WebHttpDispatchOperationSelector.cs
- FormsIdentity.cs
- PageRanges.cs
- ChainOfDependencies.cs
- FocusManager.cs
- ActiveDocumentEvent.cs
- FrameworkElement.cs
- embossbitmapeffect.cs
- loginstatus.cs
- KeyedCollection.cs
- SerializationFieldInfo.cs
- FirstMatchCodeGroup.cs
- UnsafeNativeMethods.cs
- NotCondition.cs
- HScrollProperties.cs
- NamedObject.cs
- Pair.cs
- Debug.cs
- Inflater.cs
- DataGridViewSelectedCellCollection.cs
- Thickness.cs
- dataSvcMapFileLoader.cs
- ResourcePool.cs
- AnnotationService.cs
- MultiView.cs
- FixedSOMTableRow.cs
- SchemaMapping.cs
- storepermission.cs
- DateTimeValueSerializer.cs
- MouseButton.cs
- XPathParser.cs
- SqlDataSourceSelectingEventArgs.cs
- XamlFrame.cs
- KnownBoxes.cs
- FlowLayout.cs
- ConfigXmlReader.cs
- ConstructorBuilder.cs
- WebMessageBodyStyleHelper.cs
- FrameworkElementFactoryMarkupObject.cs
- TextTreeRootNode.cs
- TextBox.cs
- PromptEventArgs.cs
- ControlBindingsCollection.cs
- ProjectedSlot.cs
- XmlSchemaObjectTable.cs
- DBSchemaRow.cs
- nulltextcontainer.cs
- HtmlControlPersistable.cs
- OletxTransactionFormatter.cs
- EntityDataSourceDesigner.cs
- FaultException.cs
- TemplateParser.cs
- TabControlDesigner.cs
- MailMessage.cs
- PerfCounters.cs
- LinqTreeNodeEvaluator.cs
- ByteKeyFrameCollection.cs
- LinqDataSourceContextEventArgs.cs
- JoinCqlBlock.cs
- SQLString.cs
- PackWebRequestFactory.cs
- HtmlLink.cs
- ListViewItem.cs
- RequestDescription.cs
- CustomErrorsSection.cs
- SpellerStatusTable.cs
- DataErrorValidationRule.cs