Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- XPathNode.cs
- TdsRecordBufferSetter.cs
- SmtpClient.cs
- DesignerActionItem.cs
- SmiContext.cs
- NameObjectCollectionBase.cs
- CodeConditionStatement.cs
- SystemFonts.cs
- SqlCacheDependencyDatabase.cs
- BuildProviderAppliesToAttribute.cs
- DataGridColumnHeadersPresenterAutomationPeer.cs
- XPathArrayIterator.cs
- CheckBoxDesigner.cs
- Property.cs
- SHA256.cs
- DeclaredTypeValidator.cs
- FocusManager.cs
- ValueHandle.cs
- SoapConverter.cs
- DirectoryGroupQuery.cs
- SQLDateTimeStorage.cs
- QilTypeChecker.cs
- ContractNamespaceAttribute.cs
- storepermission.cs
- CharAnimationBase.cs
- SemanticResultValue.cs
- AssociatedControlConverter.cs
- MethodBuilder.cs
- BooleanExpr.cs
- LayoutTableCell.cs
- CompoundFileIOPermission.cs
- IdentifierService.cs
- BlurBitmapEffect.cs
- DNS.cs
- ParenExpr.cs
- EncodingTable.cs
- XmlUTF8TextReader.cs
- DataListCommandEventArgs.cs
- Deserializer.cs
- Vector.cs
- CLSCompliantAttribute.cs
- CompilationUtil.cs
- ModelProperty.cs
- StringFormat.cs
- XmlSerializerObjectSerializer.cs
- ScrollChrome.cs
- FunctionUpdateCommand.cs
- SHA256Managed.cs
- WmlImageAdapter.cs
- ScrollBar.cs
- DataControlButton.cs
- ButtonBaseDesigner.cs
- XamlPointCollectionSerializer.cs
- PropertyChangingEventArgs.cs
- FormCollection.cs
- ConfigXmlDocument.cs
- InstanceCreationEditor.cs
- DesignTimeVisibleAttribute.cs
- SafeViewOfFileHandle.cs
- TrailingSpaceComparer.cs
- XsltInput.cs
- ButtonChrome.cs
- HttpMethodAttribute.cs
- PointAnimationUsingPath.cs
- IteratorFilter.cs
- ToolStripSplitButton.cs
- WebServiceResponse.cs
- TextEditorSpelling.cs
- DetailsViewUpdateEventArgs.cs
- StringToken.cs
- _NetworkingPerfCounters.cs
- PolyLineSegment.cs
- URLIdentityPermission.cs
- Exceptions.cs
- Brush.cs
- Form.cs
- RangeBase.cs
- ApplicationBuildProvider.cs
- ApplicationDirectoryMembershipCondition.cs
- metadatamappinghashervisitor.cs
- ActivityDesignerResources.cs
- EntityDesignerUtils.cs
- Serializer.cs
- QilFactory.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- DocumentReferenceCollection.cs
- SeekStoryboard.cs
- XmlArrayAttribute.cs
- PublisherMembershipCondition.cs
- DateRangeEvent.cs
- Transform3D.cs
- ErrorProvider.cs
- TypeToken.cs
- ChannelFactoryBase.cs
- OperationValidationEventArgs.cs
- MimeTypeMapper.cs
- ParsedAttributeCollection.cs
- ScopedKnownTypes.cs
- XsdSchemaFileEditor.cs
- _CacheStreams.cs