Code:
/ FX-1434 / FX-1434 / 1.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
- Point3DCollectionValueSerializer.cs
- StylusPointCollection.cs
- wgx_commands.cs
- SQLString.cs
- OdbcConnectionHandle.cs
- WsatEtwTraceListener.cs
- MatrixAnimationBase.cs
- SynchronizedPool.cs
- DataSourceUtil.cs
- DrawingVisual.cs
- DotExpr.cs
- _SecureChannel.cs
- TableCell.cs
- EncryptedKey.cs
- LightweightCodeGenerator.cs
- DataGridViewColumnCollectionDialog.cs
- TiffBitmapEncoder.cs
- DllNotFoundException.cs
- InternalCache.cs
- ApplicationManager.cs
- StrokeNodeOperations.cs
- ImageButton.cs
- ThreadStartException.cs
- HtmlAnchor.cs
- ProcessManager.cs
- ConfigurationSettings.cs
- DataTableMappingCollection.cs
- ToolStripProgressBar.cs
- TreeView.cs
- EventProviderBase.cs
- IteratorDescriptor.cs
- ContentWrapperAttribute.cs
- WindowsGrip.cs
- EntitySqlQueryState.cs
- CapabilitiesSection.cs
- SafeFileMappingHandle.cs
- DragEventArgs.cs
- XmlBinaryReader.cs
- QilChoice.cs
- GroupDescription.cs
- HtmlButton.cs
- AttributeAction.cs
- XmlSchemaSequence.cs
- querybuilder.cs
- HtmlSelect.cs
- DefinitionBase.cs
- BindingListCollectionView.cs
- DbDataAdapter.cs
- XmlEntity.cs
- DispatcherObject.cs
- Rotation3DKeyFrameCollection.cs
- SiblingIterators.cs
- ObjectReaderCompiler.cs
- OracleCommand.cs
- EventKeyword.cs
- ApplicationActivator.cs
- PackWebRequest.cs
- TaskDesigner.cs
- SEHException.cs
- XmlSecureResolver.cs
- RuntimeVariableList.cs
- SafeCryptHandles.cs
- SchemaTypeEmitter.cs
- Int64Storage.cs
- MenuItemStyle.cs
- EmptyQuery.cs
- HttpModuleCollection.cs
- ResourceManagerWrapper.cs
- ValidationHelper.cs
- CatalogPartCollection.cs
- ListViewDeleteEventArgs.cs
- DataSourceControl.cs
- UInt16Storage.cs
- StateDesigner.CommentLayoutGlyph.cs
- StylusPointPropertyUnit.cs
- PageBreakRecord.cs
- AndMessageFilterTable.cs
- HiddenField.cs
- WhitespaceRuleReader.cs
- CharAnimationUsingKeyFrames.cs
- BehaviorDragDropEventArgs.cs
- WebCategoryAttribute.cs
- DataColumnMapping.cs
- SqlBulkCopyColumnMapping.cs
- MatrixConverter.cs
- DropTarget.cs
- MarshalDirectiveException.cs
- PropertyNames.cs
- AuthorizationPolicyTypeElementCollection.cs
- DynamicMethod.cs
- DigitShape.cs
- UIElement.cs
- CodeNamespaceCollection.cs
- Rotation3DAnimationUsingKeyFrames.cs
- D3DImage.cs
- WhitespaceReader.cs
- TagPrefixCollection.cs
- Button.cs
- SimpleHandlerBuildProvider.cs
- Version.cs