Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Configuration / System / Configuration / LocationSectionRecord.cs / 1305376 / LocationSectionRecord.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { using System.Configuration.Internal; using System.Collections; using System.Collections.Specialized; using System.Collections.Generic; using System.Configuration; using System.Text; using System.Threading; using System.Reflection; using System.Xml; [System.Diagnostics.DebuggerDisplay("LocationSectionRecord {ConfigKey}")] internal class LocationSectionRecord { SectionXmlInfo _sectionXmlInfo; // sectionXmlInfo List_errors; // errors internal LocationSectionRecord(SectionXmlInfo sectionXmlInfo, List errors) { _sectionXmlInfo = sectionXmlInfo; _errors = errors; } internal string ConfigKey { get {return _sectionXmlInfo.ConfigKey;} } internal SectionXmlInfo SectionXmlInfo { get {return _sectionXmlInfo;} } // // Errors associated with the parse of a location section. // internal ICollection Errors { get { return _errors; } } internal List ErrorsList { get { return _errors; } } internal bool HasErrors { get { return ErrorsHelper.GetHasErrors(_errors); } } internal void AddError(ConfigurationException e) { ErrorsHelper.AddError(ref _errors, e); } } } // 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
- ExtentKey.cs
- TrackingParameters.cs
- XmlDataDocument.cs
- HttpRequestWrapper.cs
- X509UI.cs
- DBAsyncResult.cs
- ToolStripDropDownDesigner.cs
- NetSectionGroup.cs
- SafeCryptoHandles.cs
- SettingsPropertyIsReadOnlyException.cs
- PropertyNames.cs
- MenuItemStyleCollectionEditor.cs
- ToolboxItemWrapper.cs
- GridItem.cs
- FlowNode.cs
- RayHitTestParameters.cs
- PointCollection.cs
- Rfc4050KeyFormatter.cs
- GeneralTransformCollection.cs
- User.cs
- TreeNodeSelectionProcessor.cs
- DBCSCodePageEncoding.cs
- SoapSchemaExporter.cs
- RepeatButton.cs
- LoginDesignerUtil.cs
- CommentEmitter.cs
- CodeRegionDirective.cs
- HandledEventArgs.cs
- TreeNodeBinding.cs
- GC.cs
- DataBindEngine.cs
- Condition.cs
- RepeatButton.cs
- cookiecontainer.cs
- ToolStripPanelCell.cs
- IconConverter.cs
- BamlMapTable.cs
- AssociationSetEnd.cs
- SchemaComplexType.cs
- Message.cs
- OdbcConnectionOpen.cs
- PeerName.cs
- Calendar.cs
- MenuStrip.cs
- LazyLoadBehavior.cs
- ValidationResult.cs
- DataTransferEventArgs.cs
- FixedSOMFixedBlock.cs
- DataColumnPropertyDescriptor.cs
- CalendarDay.cs
- LineServicesRun.cs
- SecurityTokenSerializer.cs
- Normalization.cs
- ScrollChangedEventArgs.cs
- XamlPathDataSerializer.cs
- _SSPIWrapper.cs
- ContextMenu.cs
- DigestTraceRecordHelper.cs
- RenderTargetBitmap.cs
- UnmanagedMemoryStreamWrapper.cs
- TextElementEditingBehaviorAttribute.cs
- ListViewInsertEventArgs.cs
- xml.cs
- LifetimeMonitor.cs
- InvalidFilterCriteriaException.cs
- RTTrackingProfile.cs
- ClientScriptItem.cs
- XhtmlBasicValidationSummaryAdapter.cs
- GenericAuthenticationEventArgs.cs
- GenericIdentity.cs
- _SslStream.cs
- CommonObjectSecurity.cs
- DescendantQuery.cs
- TypeEnumerableViewSchema.cs
- SoapInteropTypes.cs
- PerspectiveCamera.cs
- Baml2006ReaderContext.cs
- ObjectQueryState.cs
- TemplateInstanceAttribute.cs
- XmlMtomWriter.cs
- SpellerError.cs
- MetadataUtilsSmi.cs
- BackStopAuthenticationModule.cs
- DataRecordInfo.cs
- newitemfactory.cs
- LinqDataSourceInsertEventArgs.cs
- SHA256.cs
- Triplet.cs
- PropertyTab.cs
- HostingEnvironmentSection.cs
- ObjectSelectorEditor.cs
- NamespaceEmitter.cs
- DocComment.cs
- DecodeHelper.cs
- ListSourceHelper.cs
- ResourceKey.cs
- PriorityChain.cs
- InvokePattern.cs
- XpsFixedPageReaderWriter.cs
- TraceXPathNavigator.cs