Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Configuration / System / Configuration / StreamInfo.cs / 1305376 / StreamInfo.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { using System.Configuration.Internal; using System.Collections; using System.Collections.Specialized; using System.Configuration; using System.Globalization; using System.IO; using System.Runtime.InteropServices; using System.Security.Permissions; using System.Security; using System.Text; using System.Xml; // Information about a stream used in configuration class StreamInfo { private string _sectionName; // the section the stream contains for configSource, null for a full config file private string _configSource; // the configSource directive that generated this stream, null for a full config file private string _streamName; // name of the stream private bool _isMonitored; // is the stream currently monitored? private object _version; // version that we're monitoring internal StreamInfo(string sectionName, string configSource, string streamName) { _sectionName = sectionName; _configSource = configSource; _streamName = streamName; } private StreamInfo() { } internal StreamInfo Clone() { StreamInfo clone = new StreamInfo(); clone._sectionName = this._sectionName; clone._configSource = this._configSource; clone._streamName = this._streamName; clone._isMonitored = this._isMonitored; clone._version = this._version; return clone; } internal string SectionName { get { return _sectionName; } } internal string ConfigSource { get { return _configSource; } } internal string StreamName { get { return _streamName; } } internal bool IsMonitored { get { return _isMonitored; } set { _isMonitored = value;} } internal object Version { get { return _version; } set { _version = value; } } } } // 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
- PnrpPermission.cs
- ListBindingHelper.cs
- TouchFrameEventArgs.cs
- TextTreeRootTextBlock.cs
- InheritanceContextChangedEventManager.cs
- SiteMapNodeItemEventArgs.cs
- FileChangesMonitor.cs
- ProtocolElement.cs
- OleServicesContext.cs
- SqlConnectionFactory.cs
- BuildDependencySet.cs
- LinkLabelLinkClickedEvent.cs
- XmlHelper.cs
- KeyboardNavigation.cs
- IDictionary.cs
- SuppressMessageAttribute.cs
- ImageField.cs
- SignatureHelper.cs
- ConfigXmlCDataSection.cs
- SchemaInfo.cs
- SerializerDescriptor.cs
- DesignTimeTemplateParser.cs
- WeakHashtable.cs
- BufferBuilder.cs
- RSACryptoServiceProvider.cs
- LockCookie.cs
- IPHostEntry.cs
- ArcSegment.cs
- GeneratedContractType.cs
- DataSysAttribute.cs
- HttpCachePolicyElement.cs
- ObjectNavigationPropertyMapping.cs
- OdbcConnectionFactory.cs
- Boolean.cs
- SQLInt16Storage.cs
- AuthorizationRule.cs
- WebPartDisplayModeCollection.cs
- ComponentEvent.cs
- FixedBufferAttribute.cs
- FileAuthorizationModule.cs
- ActivityInterfaces.cs
- BinaryParser.cs
- MarshalByRefObject.cs
- GraphicsContainer.cs
- WorkflowInstanceExtensionCollection.cs
- AttachedAnnotation.cs
- EntityDataSourceWizardForm.cs
- RouteValueExpressionBuilder.cs
- ImageAutomationPeer.cs
- RectAnimationClockResource.cs
- ValidationEventArgs.cs
- TableHeaderCell.cs
- DockPattern.cs
- DashStyles.cs
- TablePatternIdentifiers.cs
- MultiByteCodec.cs
- ScrollProviderWrapper.cs
- EditorZone.cs
- AssemblyInfo.cs
- SecurityRuntime.cs
- FormsAuthenticationModule.cs
- WindowsComboBox.cs
- DescendantQuery.cs
- MemoryRecordBuffer.cs
- HyperLink.cs
- UnsafeNativeMethods.cs
- ErrorHandler.cs
- RoleService.cs
- GeometryModel3D.cs
- CompilationLock.cs
- WindowsButton.cs
- TrackingServices.cs
- ToolStripOverflow.cs
- WindowsRebar.cs
- ObjectDataSourceDisposingEventArgs.cs
- SwitchAttribute.cs
- X509InitiatorCertificateServiceElement.cs
- EventSetter.cs
- PriorityChain.cs
- RSAPKCS1SignatureDeformatter.cs
- ColumnMapVisitor.cs
- ObjectQuery_EntitySqlExtensions.cs
- DataListItemEventArgs.cs
- PointLightBase.cs
- XhtmlMobileTextWriter.cs
- CatalogPartCollection.cs
- OptimizedTemplateContentHelper.cs
- EventLogPermissionEntryCollection.cs
- WebPartActionVerb.cs
- WindowPatternIdentifiers.cs
- DbTransaction.cs
- BitmapSizeOptions.cs
- FormatVersion.cs
- ExecutionContext.cs
- FontWeightConverter.cs
- ArrayConverter.cs
- EdmComplexTypeAttribute.cs
- SqlRecordBuffer.cs
- PathGradientBrush.cs
- HandleExceptionArgs.cs