Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Configuration / System / Configuration / LocationUpdates.cs / 1305376 / LocationUpdates.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { // // LocationUpdates contains all the updates that share the same location characteristics. // internal class LocationUpdates { OverrideModeSetting _overrideMode; bool _inheritInChildApps; SectionUpdates _sectionUpdates; // root of section internal LocationUpdates(OverrideModeSetting overrideMode, bool inheritInChildApps) { _overrideMode = overrideMode; _inheritInChildApps = inheritInChildApps; _sectionUpdates = new SectionUpdates(string.Empty); } internal OverrideModeSetting OverrideMode { get {return _overrideMode;} } internal bool InheritInChildApps { get {return _inheritInChildApps;} } internal SectionUpdates SectionUpdates { get {return _sectionUpdates;} } internal bool IsDefault { get { return _overrideMode.IsDefaultForLocationTag && _inheritInChildApps == true; } } internal void CompleteUpdates() { _sectionUpdates.CompleteUpdates(); } } } // 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
- DNS.cs
- CellRelation.cs
- FocusChangedEventArgs.cs
- RuleInfoComparer.cs
- FragmentQueryKB.cs
- GenericTextProperties.cs
- SqlDataAdapter.cs
- SafeUserTokenHandle.cs
- EntityDataSource.cs
- SafeProcessHandle.cs
- SwitchLevelAttribute.cs
- DataColumn.cs
- DrawingContextDrawingContextWalker.cs
- SharedStatics.cs
- CommentAction.cs
- XmlC14NWriter.cs
- InstanceDataCollection.cs
- InternalConfigEventArgs.cs
- DataContractJsonSerializer.cs
- DataGridViewSelectedRowCollection.cs
- ObjectDataSourceEventArgs.cs
- ConditionalDesigner.cs
- UIElement3DAutomationPeer.cs
- UriScheme.cs
- FileLoadException.cs
- StylusButtonEventArgs.cs
- BasePropertyDescriptor.cs
- ExpressionBuilderContext.cs
- DataSourceXmlSubItemAttribute.cs
- DetailsView.cs
- EdmPropertyAttribute.cs
- TemplatedWizardStep.cs
- GeometryConverter.cs
- TreeNode.cs
- ReadOnlyDataSource.cs
- HttpCapabilitiesEvaluator.cs
- InvalidProgramException.cs
- PathSegment.cs
- WebColorConverter.cs
- XpsPackagingPolicy.cs
- JournalEntry.cs
- ACL.cs
- AsymmetricKeyExchangeFormatter.cs
- TextFindEngine.cs
- TraceHandlerErrorFormatter.cs
- OleDbRowUpdatingEvent.cs
- Stopwatch.cs
- ResourcesBuildProvider.cs
- GatewayDefinition.cs
- Property.cs
- SmtpDigestAuthenticationModule.cs
- BinaryObjectInfo.cs
- QilCloneVisitor.cs
- CultureInfoConverter.cs
- _NegotiateClient.cs
- QilReference.cs
- ValidateNames.cs
- FileIOPermission.cs
- CatalogPartCollection.cs
- infer.cs
- UnauthorizedAccessException.cs
- DbProviderFactory.cs
- UnicastIPAddressInformationCollection.cs
- CommonEndpointBehaviorElement.cs
- StringSorter.cs
- ProtocolsConfigurationEntry.cs
- DataControlFieldHeaderCell.cs
- ComboBox.cs
- CodeDefaultValueExpression.cs
- ComNativeDescriptor.cs
- CodeTypeParameter.cs
- Repeater.cs
- ListViewTableCell.cs
- GroupBoxAutomationPeer.cs
- BaseResourcesBuildProvider.cs
- COM2EnumConverter.cs
- StrokeRenderer.cs
- AutomationIdentifier.cs
- NullableIntMinMaxAggregationOperator.cs
- DrawingAttributes.cs
- IsolatedStorage.cs
- SingleTagSectionHandler.cs
- FunctionQuery.cs
- LocalBuilder.cs
- PropertyInformationCollection.cs
- ExpressionHelper.cs
- SharedHttpTransportManager.cs
- Helpers.cs
- SplineKeyFrames.cs
- PartitionedStream.cs
- MaskDesignerDialog.cs
- IRCollection.cs
- SourceItem.cs
- CompositeScriptReference.cs
- ListViewCancelEventArgs.cs
- ActivityInterfaces.cs
- DbParameterCollection.cs
- XmlReaderDelegator.cs
- InstancePersistenceContext.cs
- Rule.cs