Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Net / System / Net / Configuration / IriParsingElement.cs / 1305376 / IriParsingElement.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { using System; public sealed class IriParsingElement : ConfigurationElement { internal const bool EnabledDefaultValue = false; public IriParsingElement() { this.properties.Add(this.enabled); } protected override ConfigurationPropertyCollection Properties { get{ return this.properties; } } [ConfigurationProperty(CommonConfigurationStrings.Enabled, DefaultValue = EnabledDefaultValue)] public bool Enabled { get { return (bool)this[this.enabled]; } set { this[this.enabled] = value; } } ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection(); readonly ConfigurationProperty enabled = new ConfigurationProperty(CommonConfigurationStrings.Enabled, typeof(bool), EnabledDefaultValue, ConfigurationPropertyOptions.None); } } // 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
- RectConverter.cs
- ImageListStreamer.cs
- XpsResource.cs
- Stack.cs
- RewritingValidator.cs
- MailMessageEventArgs.cs
- SchemaTableColumn.cs
- PermissionAttributes.cs
- SignedPkcs7.cs
- DispatchWrapper.cs
- DataContract.cs
- PropertyTabAttribute.cs
- OutputCacheProfile.cs
- ListViewContainer.cs
- SerializerWriterEventHandlers.cs
- UnaryExpressionHelper.cs
- DataGridItem.cs
- HttpCapabilitiesBase.cs
- AdPostCacheSubstitution.cs
- DesignerActionVerbList.cs
- CachingParameterInspector.cs
- ResourceContainer.cs
- JournalEntryStack.cs
- Subtree.cs
- LogRestartAreaEnumerator.cs
- ConfigurationValidatorBase.cs
- BackStopAuthenticationModule.cs
- SystemResourceKey.cs
- Size3DValueSerializer.cs
- Comparer.cs
- GZipStream.cs
- GenerateHelper.cs
- NativeMethods.cs
- StructureChangedEventArgs.cs
- ControlCachePolicy.cs
- DataSourceCollectionBase.cs
- LocatorPartList.cs
- StrokeRenderer.cs
- BackStopAuthenticationModule.cs
- CompiledQuery.cs
- SafeNativeMethods.cs
- BigInt.cs
- WebBrowserSiteBase.cs
- HMACRIPEMD160.cs
- _DomainName.cs
- X509ThumbprintKeyIdentifierClause.cs
- Script.cs
- JpegBitmapEncoder.cs
- WebBrowserContainer.cs
- DropTarget.cs
- PersonalizableAttribute.cs
- StringArrayConverter.cs
- MimeTypeMapper.cs
- ProcessThreadCollection.cs
- DelegateSerializationHolder.cs
- PointAnimationUsingPath.cs
- BatchParser.cs
- RegexCompiler.cs
- Scene3D.cs
- SplineQuaternionKeyFrame.cs
- HttpCachePolicyElement.cs
- PreProcessInputEventArgs.cs
- FixedFlowMap.cs
- InputChannelAcceptor.cs
- DbParameterHelper.cs
- ScrollBarRenderer.cs
- _ScatterGatherBuffers.cs
- TransformDescriptor.cs
- securestring.cs
- ProcessModuleDesigner.cs
- ConvertEvent.cs
- RowVisual.cs
- HttpFileCollection.cs
- IImplicitResourceProvider.cs
- FloaterParagraph.cs
- TextParagraph.cs
- DesignerActionPanel.cs
- EventEntry.cs
- WinInetCache.cs
- ArrangedElement.cs
- XmlNodeList.cs
- Model3DGroup.cs
- ConfigurationProperty.cs
- IsolatedStorageException.cs
- RequestStatusBarUpdateEventArgs.cs
- DataGridViewCellCancelEventArgs.cs
- Scheduler.cs
- TwoPhaseCommit.cs
- WindowsPrincipal.cs
- PackagePart.cs
- WeakEventManager.cs
- ClientSession.cs
- Buffer.cs
- PersonalizationDictionary.cs
- TimeoutTimer.cs
- OutputCacheEntry.cs
- WorkflowWebService.cs
- WsiProfilesElementCollection.cs
- BitmapPalettes.cs
- XmlCharCheckingReader.cs