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
- CacheRequest.cs
- ToolTipAutomationPeer.cs
- TypeResolver.cs
- namescope.cs
- Exceptions.cs
- VolatileEnlistmentState.cs
- LogSwitch.cs
- ParameterEditorUserControl.cs
- TryExpression.cs
- AssemblyBuilderData.cs
- UniformGrid.cs
- ThreadStateException.cs
- SqlXmlStorage.cs
- XmlSerializerNamespaces.cs
- ToolStripDropDownDesigner.cs
- DataDocumentXPathNavigator.cs
- RelationshipConstraintValidator.cs
- DataGridViewLayoutData.cs
- CultureInfo.cs
- WSHttpBindingBaseElement.cs
- Parameter.cs
- DaylightTime.cs
- HierarchicalDataTemplate.cs
- DifferencingCollection.cs
- NavigationPropertySingletonExpression.cs
- MultiTrigger.cs
- UpdateProgress.cs
- XmlBinaryWriterSession.cs
- ScriptManagerProxy.cs
- TextRangeAdaptor.cs
- CmsUtils.cs
- SmtpDateTime.cs
- XmlStreamNodeWriter.cs
- ProfilePropertySettings.cs
- ProfileBuildProvider.cs
- IisTraceWebEventProvider.cs
- UnsignedPublishLicense.cs
- InkCanvasAutomationPeer.cs
- Object.cs
- CommandLineParser.cs
- ContentElement.cs
- SqlFormatter.cs
- AcceleratedTokenAuthenticator.cs
- ReadWriteObjectLock.cs
- TextProperties.cs
- DataTableMappingCollection.cs
- RepeaterItemEventArgs.cs
- RadioButtonPopupAdapter.cs
- ToolStripContentPanelDesigner.cs
- DrawingAttributeSerializer.cs
- TableLayoutPanelCellPosition.cs
- NullReferenceException.cs
- EncryptedType.cs
- Module.cs
- CommandTreeTypeHelper.cs
- Error.cs
- translator.cs
- XmlBoundElement.cs
- OlePropertyStructs.cs
- DataKeyCollection.cs
- WorkItem.cs
- PackageDigitalSignature.cs
- StylusShape.cs
- smtpconnection.cs
- CalendarButton.cs
- RuntimeVariablesExpression.cs
- ShapeTypeface.cs
- FormParameter.cs
- KeyGesture.cs
- SetStoryboardSpeedRatio.cs
- IpcPort.cs
- MarshalDirectiveException.cs
- glyphs.cs
- MouseEvent.cs
- HandleTable.cs
- TrackingProfile.cs
- BitmapCodecInfoInternal.cs
- HttpClientCertificate.cs
- DataServiceQueryOfT.cs
- CodeArrayCreateExpression.cs
- CodeTypeOfExpression.cs
- PrintDialog.cs
- EditorBrowsableAttribute.cs
- ColumnPropertiesGroup.cs
- Crypto.cs
- InternalPermissions.cs
- HostingEnvironmentWrapper.cs
- UIHelper.cs
- ToolStripSettings.cs
- QuaternionAnimationUsingKeyFrames.cs
- HtmlInputCheckBox.cs
- TimeSpanConverter.cs
- CommandHelpers.cs
- UserNamePasswordValidator.cs
- Unit.cs
- TileModeValidation.cs
- MessageQueuePermissionAttribute.cs
- Base64Encoder.cs
- ScrollChrome.cs
- _IPv4Address.cs