Code:
/ 4.0 / 4.0 / 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. //------------------------------------------------------------------------------ //// 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
- OptimizerPatterns.cs
- CaseInsensitiveComparer.cs
- TdsParserStaticMethods.cs
- WorkflowView.cs
- SqlGenerator.cs
- FamilyCollection.cs
- Transform3D.cs
- XmlArrayAttribute.cs
- ExtendedPropertiesHandler.cs
- ShapeTypeface.cs
- TextContainerHelper.cs
- SQLUtility.cs
- ValueProviderWrapper.cs
- ChildChangedEventArgs.cs
- ManifestResourceInfo.cs
- HandlerWithFactory.cs
- ReflectionServiceProvider.cs
- RefreshPropertiesAttribute.cs
- Rectangle.cs
- DateTimeSerializationSection.cs
- XmlSubtreeReader.cs
- RowSpanVector.cs
- ResourceContainer.cs
- ItemsControlAutomationPeer.cs
- PaperSource.cs
- LogicalTreeHelper.cs
- ArrayTypeMismatchException.cs
- HiddenFieldDesigner.cs
- EmptyStringExpandableObjectConverter.cs
- UTF8Encoding.cs
- BorderGapMaskConverter.cs
- DesignerLoader.cs
- SystemInfo.cs
- SafeTimerHandle.cs
- Tokenizer.cs
- Perspective.cs
- RuntimeCompatibilityAttribute.cs
- SmtpNetworkElement.cs
- listitem.cs
- DesignTimeVisibleAttribute.cs
- TriggerBase.cs
- BoundingRectTracker.cs
- LocatorGroup.cs
- PrimitiveXmlSerializers.cs
- EqualityComparer.cs
- UpdatePanel.cs
- SqlPersonalizationProvider.cs
- IdentityModelStringsVersion1.cs
- WsdlBuildProvider.cs
- CollectionBuilder.cs
- DummyDataSource.cs
- ClockGroup.cs
- PassportAuthenticationModule.cs
- RowToFieldTransformer.cs
- MediaContextNotificationWindow.cs
- ReadOnlyDictionary.cs
- COM2ComponentEditor.cs
- Subtree.cs
- XPathAxisIterator.cs
- ErrorLog.cs
- DataControlFieldTypeEditor.cs
- PropertyStore.cs
- TransformationRules.cs
- ConsoleCancelEventArgs.cs
- BindingExpression.cs
- X500Name.cs
- HashMembershipCondition.cs
- Empty.cs
- ImageListStreamer.cs
- BufferedGraphicsManager.cs
- ThreadAttributes.cs
- URLString.cs
- TabControlEvent.cs
- DataGridViewRowEventArgs.cs
- ArgumentNullException.cs
- StylusTip.cs
- InvalidDocumentContentsException.cs
- Vector3DKeyFrameCollection.cs
- JavaScriptSerializer.cs
- CacheAxisQuery.cs
- ActiveXHost.cs
- WpfSharedXamlSchemaContext.cs
- DoubleLinkListEnumerator.cs
- DataGrid.cs
- Tracking.cs
- FormsAuthenticationModule.cs
- DiscoveryDocumentSerializer.cs
- PaintValueEventArgs.cs
- WebPermission.cs
- SimpleWorkerRequest.cs
- DesignerContextDescriptor.cs
- ErrorHandlerModule.cs
- StaticDataManager.cs
- SoapElementAttribute.cs
- XmlDataSourceView.cs
- HtmlElement.cs
- ToolBar.cs
- CookieHandler.cs
- PreviewKeyDownEventArgs.cs
- DataGridViewToolTip.cs