Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Services / Web / System / Web / Services / Configuration / WsdlHelpGeneratorElement.cs / 1305376 / WsdlHelpGeneratorElement.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.Web.Services.Configuration { using System; using System.Configuration; using System.IO; using System.Security.Permissions; using System.Threading; using System.Web.Configuration; using System.Web.Hosting; using System.Xml; using System.Runtime.CompilerServices; public sealed class WsdlHelpGeneratorElement : ConfigurationElement { // These three constructors are used by the configuration system. public WsdlHelpGeneratorElement() : base() { this.properties.Add(this.href); } [FileIOPermission(SecurityAction.Assert, Unrestricted = true)] string GetConfigurationDirectory() { return HttpRuntime.MachineConfigurationDirectory; } internal string HelpGeneratorVirtualPath { get { return this.virtualPath + this.Href; } } internal string HelpGeneratorPath { get { return Path.Combine(this.actualPath, this.Href); } } [ConfigurationProperty("href", IsRequired = true)] public string Href { get { return (string)base[this.href]; } set { if (value == null) { value = string.Empty; } if (this.needToValidateHref && value.Length > 0) { CheckIOReadPermission(this.actualPath, value); } base[this.href] = value; } } protected override ConfigurationPropertyCollection Properties { get { return this.properties; } } protected override void DeserializeElement(XmlReader reader, bool serializeCollectionKey) { base.DeserializeElement(reader, serializeCollectionKey); // Update paths // If we're not running in the context of a web application then skip this setting. ContextInformation context = this.EvaluationContext; WebContext webContext = context.HostingContext as WebContext; if (webContext == null) { return; } if (this.Href.Length == 0) return; string tempVirtualPath = webContext.Path; string path = null; // If the help page is not in the web app directory hierarchy (the case // for those specified in machine.config like DefaultWsdlHelpGenerator.aspx) // then we can't construct a true virtual path. This means that certain web // form features that rely on relative paths won't work. if (tempVirtualPath == null) { tempVirtualPath = HostingEnvironment.ApplicationVirtualPath; if (tempVirtualPath == null) tempVirtualPath = ""; path = GetConfigurationDirectory(); } else { path = HostingEnvironment.MapPath(tempVirtualPath); } if (!tempVirtualPath.EndsWith("/", StringComparison.Ordinal)) { tempVirtualPath += "/"; } CheckIOReadPermission(path, this.Href); this.actualPath = path; this.virtualPath = tempVirtualPath; this.needToValidateHref = true; } protected override void Reset(ConfigurationElement parentElement) { WsdlHelpGeneratorElement parent = (WsdlHelpGeneratorElement)parentElement; ContextInformation context = this.EvaluationContext; WebContext webContext = context.HostingContext as WebContext; if (webContext != null) { string tempVirtualPath = webContext.Path; bool isMachineConfig = tempVirtualPath == null; this.actualPath = parent.actualPath; if (isMachineConfig) { tempVirtualPath = HostingEnvironment.ApplicationVirtualPath; } if ((tempVirtualPath != null) && !tempVirtualPath.EndsWith("/", StringComparison.Ordinal)) { tempVirtualPath += "/"; } if ((tempVirtualPath == null) && (parentElement != null)) { this.virtualPath = parent.virtualPath; } else if (tempVirtualPath != null) { this.virtualPath = tempVirtualPath; } } base.Reset(parentElement); } [MethodImplAttribute(MethodImplOptions.NoInlining)] internal void SetDefaults() { HttpContext context = HttpContext.Current; if (context != null) { this.virtualPath = HostingEnvironment.ApplicationVirtualPath; } this.actualPath = this.GetConfigurationDirectory(); if ((this.virtualPath != null) && (!this.virtualPath.EndsWith("/", StringComparison.Ordinal))) { this.virtualPath += "/"; } if ((this.actualPath != null) && (!this.actualPath.EndsWith(@"\", StringComparison.Ordinal))) { this.actualPath += "\\"; } this.Href = "DefaultWsdlHelpGenerator.aspx"; CheckIOReadPermission(this.actualPath, this.Href); this.needToValidateHref = true; } static void CheckIOReadPermission(string path, string file) { if (path == null) return; string fullPath = Path.GetFullPath(Path.Combine(path, file)); new FileIOPermission(FileIOPermissionAccess.Read, fullPath).Demand(); } ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection(); readonly ConfigurationProperty href = new ConfigurationProperty("href", typeof(string), null, ConfigurationPropertyOptions.IsRequired); string virtualPath = null; string actualPath = null; bool needToValidateHref = false; } } // 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
- MachineKeySection.cs
- DataStreams.cs
- ObjectStateEntryBaseUpdatableDataRecord.cs
- XmlSerializerFactory.cs
- OleDbStruct.cs
- InheritanceRules.cs
- ZipIOExtraFieldPaddingElement.cs
- TabControl.cs
- Span.cs
- _LocalDataStoreMgr.cs
- TransformCryptoHandle.cs
- FixedDocument.cs
- SecurityElement.cs
- PlatformCulture.cs
- BitSet.cs
- TCPListener.cs
- DataSourceCache.cs
- CheckBoxAutomationPeer.cs
- Animatable.cs
- TreeNodeCollection.cs
- TextParagraph.cs
- Dump.cs
- NativeMethods.cs
- Array.cs
- BindingCollection.cs
- EdmComplexPropertyAttribute.cs
- MdiWindowListStrip.cs
- VirtualDirectoryMapping.cs
- ScaleTransform.cs
- HttpStaticObjectsCollectionBase.cs
- SetterBase.cs
- WebPartConnectVerb.cs
- WmlTextBoxAdapter.cs
- DataGridItemCollection.cs
- ToolStripPanelRow.cs
- EntityUtil.cs
- DataGridViewAccessibleObject.cs
- SqlDataSourceCommandEventArgs.cs
- AspCompat.cs
- GroupDescription.cs
- ToolStripItem.cs
- listitem.cs
- BindingElement.cs
- precedingquery.cs
- PointUtil.cs
- Propagator.cs
- CapiSafeHandles.cs
- MDIControlStrip.cs
- DesignerObject.cs
- BuildDependencySet.cs
- Axis.cs
- OptimisticConcurrencyException.cs
- DictionaryMarkupSerializer.cs
- JournalEntry.cs
- CodeAttributeArgumentCollection.cs
- NestPullup.cs
- DataGridColumn.cs
- SafeFileMappingHandle.cs
- ConfigurationManager.cs
- ContextBase.cs
- StructuralCache.cs
- Figure.cs
- InvalidPipelineStoreException.cs
- WebPartMinimizeVerb.cs
- DllHostedComPlusServiceHost.cs
- CommonXSendMessage.cs
- AggregationMinMaxHelpers.cs
- TextDecoration.cs
- DbException.cs
- FullTextState.cs
- NavigationWindowAutomationPeer.cs
- FontInfo.cs
- XmlWrappingWriter.cs
- NominalTypeEliminator.cs
- WorkflowRuntimeElement.cs
- Util.cs
- MimeTypeMapper.cs
- AnnouncementService.cs
- HandledEventArgs.cs
- DataGridViewColumnStateChangedEventArgs.cs
- CookieParameter.cs
- FamilyCollection.cs
- contentDescriptor.cs
- ObjectTag.cs
- SinglePageViewer.cs
- MsmqHostedTransportManager.cs
- ToolStripDropDownDesigner.cs
- _BaseOverlappedAsyncResult.cs
- controlskin.cs
- WebControl.cs
- GeometryHitTestParameters.cs
- ZoneLinkButton.cs
- DigitalSignatureProvider.cs
- LambdaExpression.cs
- ListBase.cs
- ActivityDesignerResources.cs
- ObjectDataProvider.cs
- AnimationClockResource.cs
- NetworkStream.cs
- Visual3DCollection.cs