Code:
/ 4.0 / 4.0 / 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. //------------------------------------------------------------------------------ // 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
- ClientScriptManager.cs
- RoleService.cs
- SqlDataSource.cs
- ApplicationHost.cs
- SQLDecimalStorage.cs
- TextRunCache.cs
- MouseWheelEventArgs.cs
- ExpressionBindingCollection.cs
- ResolveNameEventArgs.cs
- UndoManager.cs
- ConditionalAttribute.cs
- SortFieldComparer.cs
- SendSecurityHeader.cs
- ReadWriteObjectLock.cs
- BindingCompleteEventArgs.cs
- DeploymentSectionCache.cs
- NotificationContext.cs
- XmlConvert.cs
- CapabilitiesRule.cs
- FileAccessException.cs
- RawStylusInput.cs
- ProviderCommandInfoUtils.cs
- CngKey.cs
- DataListItemEventArgs.cs
- Substitution.cs
- EntryIndex.cs
- DataBinding.cs
- HScrollProperties.cs
- TrackingMemoryStream.cs
- VersionConverter.cs
- AggregatePushdown.cs
- Clause.cs
- DBDataPermissionAttribute.cs
- TypeReference.cs
- CssTextWriter.cs
- DbQueryCommandTree.cs
- EntityDescriptor.cs
- FunctionImportMapping.cs
- MessageContractMemberAttribute.cs
- DataRecord.cs
- RepeatInfo.cs
- Propagator.ExtentPlaceholderCreator.cs
- ApplicationException.cs
- WorkflowQueuingService.cs
- ActivityInstanceReference.cs
- XmlSchemaExternal.cs
- NetTcpSectionData.cs
- Codec.cs
- WebPartAddingEventArgs.cs
- XmlAttributeCache.cs
- EditorResources.cs
- DataDocumentXPathNavigator.cs
- XmlLinkedNode.cs
- XmlCharacterData.cs
- TextTreeNode.cs
- RecordsAffectedEventArgs.cs
- SerializationSectionGroup.cs
- PackageController.cs
- BitmapFrameDecode.cs
- InvalidOperationException.cs
- ProcessHostConfigUtils.cs
- AudioBase.cs
- TabletDeviceInfo.cs
- GenericWebPart.cs
- DataSourceHelper.cs
- DivideByZeroException.cs
- OleDbConnection.cs
- SafeSecurityHelper.cs
- XPathParser.cs
- ServicePointManager.cs
- BaseProcessor.cs
- DataGridColumnCollection.cs
- TextControl.cs
- FlowDocumentView.cs
- ClonableStack.cs
- Quaternion.cs
- NavigationProgressEventArgs.cs
- X509PeerCertificateAuthentication.cs
- VoiceInfo.cs
- ActivityBuilder.cs
- XmlSchemaInferenceException.cs
- EventLogPermission.cs
- GridToolTip.cs
- Version.cs
- SafeHandles.cs
- DictionaryGlobals.cs
- ProjectionCamera.cs
- TextDecorationCollectionConverter.cs
- DrawingGroup.cs
- AdornerHitTestResult.cs
- Win32.cs
- MSAAWinEventWrap.cs
- HtmlTableCell.cs
- DataGridViewColumnTypeEditor.cs
- DefaultPrintController.cs
- TripleDES.cs
- DataServiceProcessingPipeline.cs
- SHA256.cs
- Stack.cs
- DocumentPageTextView.cs