Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / SiteMap.cs / 2 / SiteMap.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * Copyright (c) 2002 Microsoft Corporation */ namespace System.Web { using System; using System.Collections; using System.ComponentModel; using System.Configuration.Provider; using System.Security.Permissions; using System.Web.Configuration; using System.Web.UI; using System.Web.Hosting; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public static class SiteMap { internal const string SectionName = "system.web/siteMap"; private static SiteMapProviderCollection _providers; private static SiteMapProvider _provider; private static object _lockObject = new object(); private static bool _configEnabledEvaluated; private static bool _enabled; public static SiteMapNode CurrentNode { get { return Provider.CurrentNode; } } public static bool Enabled { get { if (!_configEnabledEvaluated) { SiteMapSection config = RuntimeConfig.GetAppConfig().SiteMap; _enabled = (config != null && config.Enabled); _configEnabledEvaluated = true; } return _enabled; } } public static SiteMapProvider Provider { get { Initialize(); return _provider; } } public static SiteMapProviderCollection Providers { get { Initialize(); return _providers; } } public static SiteMapNode RootNode { get { SiteMapProvider rootProvider = Provider.RootProvider; SiteMapNode rootNode = rootProvider.RootNode; if (rootNode == null) { String name = ((ProviderBase)rootProvider).Name; throw new InvalidOperationException(SR.GetString(SR.SiteMapProvider_Invalid_RootNode, name)); } return rootNode; } } public static event SiteMapResolveEventHandler SiteMapResolve { add { Provider.SiteMapResolve += value; } remove { Provider.SiteMapResolve -= value; } } private static void Initialize() { if (_providers != null) return; HttpRuntime.CheckAspNetHostingPermission(AspNetHostingPermissionLevel.Low, SR.Feature_not_supported_at_this_level); lock (_lockObject) { if (_providers != null) return; SiteMapSection config = RuntimeConfig.GetAppConfig().SiteMap; if (config == null) { // just return an empty collection so that designer will work. _providers = new SiteMapProviderCollection(); return; } if (!config.Enabled) throw new InvalidOperationException(SR.GetString(SR.SiteMap_feature_disabled, SiteMap.SectionName)); // Make sure the default provider exists. config.ValidateDefaultProvider(); _providers = config.ProvidersInternal; _provider = _providers[config.DefaultProvider]; _providers.SetReadOnly(); } } } [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class SiteMapProviderCollection : ProviderCollection { public override void Add(ProviderBase provider) { if (provider == null) throw new ArgumentNullException("provider"); if (!(provider is SiteMapProvider)) throw new ArgumentException(SR.GetString( SR.Provider_must_implement_the_interface, provider.GetType().Name, typeof(SiteMapProvider).Name), "provider"); Add((SiteMapProvider)provider); } public void Add(SiteMapProvider provider) { if (provider == null) { throw new ArgumentNullException("provider"); } base.Add(provider); } public void AddArray(SiteMapProvider [] providerArray) { if (providerArray == null) { throw new ArgumentNullException("providerArray"); } foreach (SiteMapProvider provider in providerArray) { if (this[provider.Name] != null) throw new ArgumentException(SR.GetString(SR.SiteMapProvider_Multiple_Providers_With_Identical_Name, provider.Name)); Add(provider); } } public new SiteMapProvider this[string name] { get { return (SiteMapProvider) base[name]; } } } public delegate SiteMapNode SiteMapResolveEventHandler(Object sender, SiteMapResolveEventArgs e); [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class SiteMapResolveEventArgs : EventArgs { private HttpContext _context; private SiteMapProvider _provider; public SiteMapResolveEventArgs(HttpContext context, SiteMapProvider provider) { _context = context; _provider = provider; } public SiteMapProvider Provider { get { return _provider; } } public HttpContext Context { get { return _context; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ConfigXmlDocument.cs
- SQLDecimalStorage.cs
- SmtpException.cs
- DiscoveryInnerClientManaged11.cs
- URI.cs
- NameValueFileSectionHandler.cs
- KeyBinding.cs
- DeobfuscatingStream.cs
- _ScatterGatherBuffers.cs
- PauseStoryboard.cs
- WebPartDeleteVerb.cs
- Operand.cs
- DictionaryCustomTypeDescriptor.cs
- ScriptingSectionGroup.cs
- InfoCardSymmetricAlgorithm.cs
- ObjectCloneHelper.cs
- SignatureSummaryDialog.cs
- ListDictionary.cs
- FontStyleConverter.cs
- UIServiceHelper.cs
- GridLengthConverter.cs
- PropertyToken.cs
- control.ime.cs
- BoundsDrawingContextWalker.cs
- UpdatePanel.cs
- AppModelKnownContentFactory.cs
- XPathDocumentIterator.cs
- CultureInfoConverter.cs
- SafeFileMapViewHandle.cs
- XmlSchemaImporter.cs
- ObjectSet.cs
- VirtualPathUtility.cs
- ListViewInsertionMark.cs
- PixelFormat.cs
- SynchronizedPool.cs
- ComplexLine.cs
- DataSourceView.cs
- SystemResourceKey.cs
- ProfileService.cs
- Function.cs
- CustomCredentialPolicy.cs
- OrderedParallelQuery.cs
- WorkflowTimerService.cs
- Span.cs
- Reference.cs
- HttpModuleAction.cs
- FieldAccessException.cs
- BoundingRectTracker.cs
- BindingList.cs
- ComponentManagerBroker.cs
- DbConnectionPoolGroup.cs
- SecureStringHasher.cs
- ExpandCollapsePattern.cs
- LazyLoadBehavior.cs
- XmlSchemaSimpleType.cs
- PointIndependentAnimationStorage.cs
- AnnotationResourceCollection.cs
- TextBoxView.cs
- ApplicationServiceManager.cs
- TextRange.cs
- QueryableDataSourceView.cs
- EmptyImpersonationContext.cs
- RemotingClientProxy.cs
- ConfigurationPropertyCollection.cs
- ProcessHostServerConfig.cs
- RoutingConfiguration.cs
- LogReserveAndAppendState.cs
- HttpWebRequest.cs
- QuaternionValueSerializer.cs
- XmlSchemaType.cs
- ClientProxyGenerator.cs
- Queue.cs
- Array.cs
- BamlLocalizationDictionary.cs
- ToolboxComponentsCreatingEventArgs.cs
- HtmlWindow.cs
- WebPartConnection.cs
- Compress.cs
- QueryInterceptorAttribute.cs
- KeyPullup.cs
- CompositeFontParser.cs
- DesignBindingConverter.cs
- MonthChangedEventArgs.cs
- WebBrowserDocumentCompletedEventHandler.cs
- AttributeCollection.cs
- ListenerBinder.cs
- DecoderReplacementFallback.cs
- GridViewDeletedEventArgs.cs
- Registry.cs
- NamespaceQuery.cs
- X509AsymmetricSecurityKey.cs
- OwnerDrawPropertyBag.cs
- ViewStateAttachedPropertyFeature.cs
- NumberFunctions.cs
- TempFiles.cs
- METAHEADER.cs
- MsmqInputMessage.cs
- XmlTextReader.cs
- CalloutQueueItem.cs
- ProtocolInformationReader.cs