Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / Tools / xws_reg / System / ServiceModel / Install / Configuration / ConfigurationLoader.cs / 1 / ConfigurationLoader.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.ServiceModel.Install.Configuration { using WebAdmin = Microsoft.Web.Administration; using System; using System.ServiceModel; using System.Configuration; using System.ServiceModel.Configuration; using System.Web.Configuration; using System.Xml; internal abstract class ConfigurationLoader { protected Configuration machineConfiguration; protected Configuration rootWebConfiguration; internal abstract Configuration MachineConfiguration { get; } internal string MachineConfigurationFilePath { get { string filePath = null; if (null != this.MachineConfiguration) { filePath = this.MachineConfiguration.FilePath; } return filePath; } } internal abstract Configuration RootWebConfiguration { get; } internal string RootWebConfigurationFilePath { get { string filePath = null; if (null != this.RootWebConfiguration) { filePath = this.RootWebConfiguration.FilePath; } return filePath; } } internal ProtocolsSection ProtocolsSection { get { return (ProtocolsSection)this.RootWebConfiguration.GetSection(this.ProtocolsSectionPath); } } internal string ProtocolsSectionPath { get { return "system.web/protocols"; } } internal ServiceHostingEnvironmentSection ServiceHostingEnvironmentSection { get { return (ServiceHostingEnvironmentSection)this.RootWebConfiguration.GetSection(this.ServiceHostingEnvironmentSectionPath); } } internal string ServiceHostingEnvironmentSectionPath { get { return "system.serviceModel/serviceHostingEnvironment"; } } internal SystemWebSectionGroup SystemWebSectionGroup { get { return (SystemWebSectionGroup)this.RootWebConfiguration.GetSectionGroup(this.SystemWebSectionGroupPath); } } internal string SystemWebSectionGroupPath { get { return "system.web"; } } internal bool RemoveNodeFromConfigFile(string configFilePath, string xpath, bool ifNodeIsEmpty) { bool retVal = false; XmlDocument xmlDoc = new XmlDocument(); xmlDoc.Load(configFilePath); XmlNode node = xmlDoc.SelectSingleNode(xpath); if (null != node) { if (ifNodeIsEmpty) { if (0 == node.Attributes.Count && !node.HasChildNodes) { node.ParentNode.RemoveChild(node); retVal = true; } } else { node.ParentNode.RemoveChild(node); retVal = true; } } if (retVal) { xmlDoc.Save(configFilePath); if (configFilePath.Equals(this.MachineConfigurationFilePath, StringComparison.OrdinalIgnoreCase)) { this.machineConfiguration = null; } else if (configFilePath.Equals(this.RootWebConfigurationFilePath, StringComparison.OrdinalIgnoreCase)) { this.rootWebConfiguration = null; } } return retVal; } internal virtual void Save() { if (null != this.machineConfiguration) { this.machineConfiguration.Save(); this.machineConfiguration = null; } if (null != this.rootWebConfiguration) { this.rootWebConfiguration.Save(); this.rootWebConfiguration = null; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TextTreeUndo.cs
- CacheRequest.cs
- ModelMemberCollection.cs
- HwndSource.cs
- DynamicField.cs
- APCustomTypeDescriptor.cs
- DataGridViewLayoutData.cs
- ServiceErrorHandler.cs
- XmlLinkedNode.cs
- Brush.cs
- FilterableAttribute.cs
- DBAsyncResult.cs
- RegionInfo.cs
- OrderedParallelQuery.cs
- GestureRecognitionResult.cs
- AccessKeyManager.cs
- Cursor.cs
- XmlSerializerVersionAttribute.cs
- DataGridViewElement.cs
- ActivatedMessageQueue.cs
- ApplicationContext.cs
- TableProvider.cs
- CultureInfo.cs
- RoleGroup.cs
- ToolStripDesignerAvailabilityAttribute.cs
- BitmapDownload.cs
- SQLGuidStorage.cs
- WebEncodingValidatorAttribute.cs
- DataGridViewMethods.cs
- ValueTable.cs
- SafeLibraryHandle.cs
- SQLDecimalStorage.cs
- MediaSystem.cs
- OpenFileDialog.cs
- TextBoxView.cs
- SocketAddress.cs
- SoapHttpTransportImporter.cs
- DataObjectFieldAttribute.cs
- KeyFrames.cs
- BindingContext.cs
- WorkflowFileItem.cs
- Internal.cs
- DocumentOrderQuery.cs
- TransformerTypeCollection.cs
- KnownColorTable.cs
- DelegatingTypeDescriptionProvider.cs
- BamlTreeUpdater.cs
- SqlCacheDependencySection.cs
- CookieProtection.cs
- XmlComplianceUtil.cs
- EnumUnknown.cs
- MessageSmuggler.cs
- Expander.cs
- CalendarDesigner.cs
- DescendantBaseQuery.cs
- QuaternionValueSerializer.cs
- DesignerLoader.cs
- UdpTransportBindingElement.cs
- IntegrationExceptionEventArgs.cs
- KoreanCalendar.cs
- HMACSHA256.cs
- Win32.cs
- TraceSource.cs
- XslCompiledTransform.cs
- SamlSerializer.cs
- Helper.cs
- Helpers.cs
- EdgeModeValidation.cs
- SmtpException.cs
- TextTreeDeleteContentUndoUnit.cs
- TypeFieldSchema.cs
- CodeTypeMember.cs
- ConfigXmlSignificantWhitespace.cs
- SecurityListenerSettingsLifetimeManager.cs
- FormsAuthenticationCredentials.cs
- HorizontalAlignConverter.cs
- XmlHierarchicalDataSourceView.cs
- ParserStreamGeometryContext.cs
- GraphicsPathIterator.cs
- ServiceDebugBehavior.cs
- DllNotFoundException.cs
- CompositionDesigner.cs
- SqlTrackingWorkflowInstance.cs
- IdentityReference.cs
- SoapCommonClasses.cs
- ExtendedPropertyDescriptor.cs
- Size3DValueSerializer.cs
- PowerModeChangedEventArgs.cs
- PostBackOptions.cs
- ExpressionBuilderContext.cs
- ServiceThrottlingBehavior.cs
- ColorContextHelper.cs
- TextWriter.cs
- CheckBoxList.cs
- MouseEventArgs.cs
- WebPartDescription.cs
- ByteKeyFrameCollection.cs
- SingleObjectCollection.cs
- SchemaReference.cs
- Token.cs