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
- NoneExcludedImageIndexConverter.cs
- TemplateField.cs
- WorkflowViewService.cs
- EncoderParameters.cs
- ButtonChrome.cs
- BufferBuilder.cs
- PatternMatcher.cs
- ResourceAttributes.cs
- OutOfMemoryException.cs
- MessageSecurityVersionConverter.cs
- _DisconnectOverlappedAsyncResult.cs
- EnvironmentPermission.cs
- CodePageEncoding.cs
- XmlDownloadManager.cs
- ToolStripItemTextRenderEventArgs.cs
- DefaultTypeArgumentAttribute.cs
- PlainXmlWriter.cs
- PropertyChangeTracker.cs
- SimpleApplicationHost.cs
- _NtlmClient.cs
- ObjectHandle.cs
- followingsibling.cs
- ErrorWrapper.cs
- SoapTypeAttribute.cs
- UnsafeNativeMethods.cs
- ParameterBuilder.cs
- TransactionTable.cs
- NumberFormatInfo.cs
- BrowserCapabilitiesCodeGenerator.cs
- Code.cs
- WarningException.cs
- FrameworkRichTextComposition.cs
- SystemIPAddressInformation.cs
- latinshape.cs
- ImagingCache.cs
- ArrayTypeMismatchException.cs
- DesignerSerializerAttribute.cs
- MergePropertyDescriptor.cs
- XmlName.cs
- XmlCodeExporter.cs
- ScrollChrome.cs
- HttpResponse.cs
- DynamicRouteExpression.cs
- OleDbErrorCollection.cs
- DetailsViewInsertedEventArgs.cs
- FileDialogPermission.cs
- SqlXmlStorage.cs
- OleDbPropertySetGuid.cs
- Slider.cs
- HtmlElementErrorEventArgs.cs
- _NestedSingleAsyncResult.cs
- VisualSerializer.cs
- Line.cs
- InkCanvasSelectionAdorner.cs
- HeaderedContentControl.cs
- HtmlInputReset.cs
- UpdateCompiler.cs
- RotateTransform3D.cs
- WebProxyScriptElement.cs
- AbsoluteQuery.cs
- XmlReflectionImporter.cs
- DummyDataSource.cs
- EventLogQuery.cs
- ContractMapping.cs
- ApplicationInfo.cs
- X509SecurityToken.cs
- BuildProviderCollection.cs
- XpsSerializationManager.cs
- BamlLocalizationDictionary.cs
- securestring.cs
- GlobalProxySelection.cs
- ZoneIdentityPermission.cs
- LinkDesigner.cs
- WebRequestModulesSection.cs
- StringComparer.cs
- SecurityPolicySection.cs
- ProcessHost.cs
- MaskPropertyEditor.cs
- WebPartsPersonalization.cs
- InternalPolicyElement.cs
- BamlMapTable.cs
- PartialArray.cs
- WaitForChangedResult.cs
- XamlStream.cs
- DCSafeHandle.cs
- FontEmbeddingManager.cs
- StrokeCollectionDefaultValueFactory.cs
- SymmetricKeyWrap.cs
- SoapReflectionImporter.cs
- SimpleLine.cs
- RequestCacheEntry.cs
- SqlDataAdapter.cs
- SiteMembershipCondition.cs
- RightNameExpirationInfoPair.cs
- BasicViewGenerator.cs
- Label.cs
- ButtonAutomationPeer.cs
- TableLayoutRowStyleCollection.cs
- ExceptionWrapper.cs
- COSERVERINFO.cs