Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Configuration / System / Configuration / StreamInfo.cs / 1 / 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. //------------------------------------------------------------------------------ //// 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
- DesignerTransaction.cs
- KeyInstance.cs
- PasswordTextNavigator.cs
- EndpointDiscoveryElement.cs
- FieldNameLookup.cs
- ImageIndexEditor.cs
- OleDbEnumerator.cs
- StateBag.cs
- ToolStripItemCollection.cs
- DataGridSortCommandEventArgs.cs
- LinqToSqlWrapper.cs
- NumericUpDownAcceleration.cs
- SqlDataReader.cs
- SwitchAttribute.cs
- InertiaTranslationBehavior.cs
- TypeBuilder.cs
- SqlErrorCollection.cs
- PhysicalFontFamily.cs
- DirectoryObjectSecurity.cs
- SubMenuStyleCollection.cs
- SafeWaitHandle.cs
- JournalEntryStack.cs
- WorkflowDebuggerSteppingAttribute.cs
- SQLGuid.cs
- TagPrefixAttribute.cs
- FixedDocumentPaginator.cs
- SrgsRule.cs
- Point.cs
- RankException.cs
- GridPattern.cs
- HttpChannelHelpers.cs
- SqlTriggerContext.cs
- DataSourceView.cs
- ScriptBehaviorDescriptor.cs
- PropertyEntry.cs
- RemoteWebConfigurationHostStream.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- CredentialCache.cs
- ManipulationInertiaStartingEventArgs.cs
- ReaderWriterLockWrapper.cs
- PageContentCollection.cs
- ThreadExceptionDialog.cs
- GenericWebPart.cs
- CodeRegionDirective.cs
- AssemblyCollection.cs
- MimeParameterWriter.cs
- ReadOnlyObservableCollection.cs
- OdbcEnvironment.cs
- IDispatchConstantAttribute.cs
- IriParsingElement.cs
- RawStylusInputCustomData.cs
- TrackingExtract.cs
- TypeDescriptor.cs
- RenderDataDrawingContext.cs
- ResourceDescriptionAttribute.cs
- RelationshipConstraintValidator.cs
- ZoomingMessageFilter.cs
- MenuAdapter.cs
- UidManager.cs
- XmlFormatReaderGenerator.cs
- GatewayIPAddressInformationCollection.cs
- _BaseOverlappedAsyncResult.cs
- SemanticAnalyzer.cs
- CustomGrammar.cs
- GenerateHelper.cs
- HttpGetClientProtocol.cs
- BuildDependencySet.cs
- SecurityException.cs
- GenericUriParser.cs
- BuildProvider.cs
- Line.cs
- SharedUtils.cs
- storepermissionattribute.cs
- TagPrefixInfo.cs
- EncryptedXml.cs
- ReferentialConstraint.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- ISFTagAndGuidCache.cs
- TableLayoutStyle.cs
- RIPEMD160Managed.cs
- DesignerDataTableBase.cs
- TextAutomationPeer.cs
- ComAdminWrapper.cs
- ResourceAttributes.cs
- TypeGeneratedEventArgs.cs
- OracleConnectionFactory.cs
- DataGridCellsPanel.cs
- DataStreams.cs
- InstanceStoreQueryResult.cs
- ProfileInfo.cs
- WindowVisualStateTracker.cs
- CriticalFinalizerObject.cs
- RectangleConverter.cs
- AdjustableArrowCap.cs
- DataTableCollection.cs
- DataColumnMappingCollection.cs
- CrossSiteScriptingValidation.cs
- DBSqlParserColumn.cs
- DesignerActionUI.cs
- ViewStateModeByIdAttribute.cs