Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- TextElementEnumerator.cs
- CompleteWizardStep.cs
- ExecutionEngineException.cs
- GiveFeedbackEvent.cs
- DBAsyncResult.cs
- OperationResponse.cs
- ProtectedConfigurationProviderCollection.cs
- GroupItem.cs
- StaticTextPointer.cs
- CommandLineParser.cs
- FileLogRecordEnumerator.cs
- Site.cs
- FileNotFoundException.cs
- SecurityContextSecurityTokenResolver.cs
- XamlWriter.cs
- IdentitySection.cs
- PageThemeCodeDomTreeGenerator.cs
- ButtonPopupAdapter.cs
- VerificationAttribute.cs
- DefinitionProperties.cs
- ContainerParagraph.cs
- ForAllOperator.cs
- JsonReader.cs
- FileReader.cs
- VisualProxy.cs
- FixedDocumentPaginator.cs
- WebBrowserUriTypeConverter.cs
- StringDictionaryCodeDomSerializer.cs
- ServiceObjectContainer.cs
- DES.cs
- VolatileEnlistmentState.cs
- OperationExecutionFault.cs
- MenuEventArgs.cs
- EmptyCollection.cs
- XmlCodeExporter.cs
- NamespaceList.cs
- WeakEventManager.cs
- XmlElementList.cs
- SmiConnection.cs
- PartManifestEntry.cs
- FormatControl.cs
- DictionaryGlobals.cs
- InvalidEnumArgumentException.cs
- TimeZone.cs
- CharacterBufferReference.cs
- ReferenceEqualityComparer.cs
- NotifyParentPropertyAttribute.cs
- AsymmetricSignatureDeformatter.cs
- WhitespaceRule.cs
- EncodingInfo.cs
- StorageComplexPropertyMapping.cs
- KeyboardNavigation.cs
- StylesEditorDialog.cs
- QilVisitor.cs
- ActivityExecutorSurrogate.cs
- ToolBarButtonClickEvent.cs
- ChildrenQuery.cs
- CodeAssignStatement.cs
- SystemBrushes.cs
- CustomCredentialPolicy.cs
- WindowsMenu.cs
- ModulesEntry.cs
- MaterialCollection.cs
- DocumentXmlWriter.cs
- ApplicationFileParser.cs
- ChannelFactoryBase.cs
- FormViewDeleteEventArgs.cs
- SqlCrossApplyToCrossJoin.cs
- DependencyObjectValidator.cs
- CodeTypeReferenceCollection.cs
- TextRunCacheImp.cs
- ArgumentOutOfRangeException.cs
- PropertyEmitter.cs
- TimeEnumHelper.cs
- ErrorInfoXmlDocument.cs
- RegisteredScript.cs
- UIAgentInitializationException.cs
- METAHEADER.cs
- SrgsDocumentParser.cs
- QueryComponents.cs
- precedingquery.cs
- HtmlHead.cs
- LiteralTextContainerControlBuilder.cs
- StoreItemCollection.Loader.cs
- SymbolPair.cs
- XamlReader.cs
- SyndicationSerializer.cs
- SqlCachedBuffer.cs
- Translator.cs
- CredentialSelector.cs
- COM2IDispatchConverter.cs
- JavaScriptObjectDeserializer.cs
- AssemblyCollection.cs
- WindowsListViewItem.cs
- xmlsaver.cs
- OdbcStatementHandle.cs
- EmptyEnumerator.cs
- M3DUtil.cs
- BypassElement.cs
- HuffModule.cs