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
- GlyphRunDrawing.cs
- TypeSystem.cs
- DataSourceControlBuilder.cs
- KerberosReceiverSecurityToken.cs
- HttpHandler.cs
- LineServicesCallbacks.cs
- TraceShell.cs
- MarkedHighlightComponent.cs
- TypeConverterAttribute.cs
- OrderToken.cs
- Subset.cs
- ForAllOperator.cs
- EdmComplexPropertyAttribute.cs
- SortExpressionBuilder.cs
- MarkerProperties.cs
- AccessViolationException.cs
- RuleSettings.cs
- ADMembershipUser.cs
- ImageDesigner.cs
- EventProviderWriter.cs
- NamedPipeAppDomainProtocolHandler.cs
- XmlNodeList.cs
- TextAdaptor.cs
- MessageDecoder.cs
- ConnectionManagementElement.cs
- HttpListenerRequest.cs
- SystemWebSectionGroup.cs
- AppearanceEditorPart.cs
- TypeNameConverter.cs
- Endpoint.cs
- PoisonMessageException.cs
- CollectionType.cs
- ZoomPercentageConverter.cs
- TextBox.cs
- ProgressBarAutomationPeer.cs
- ViewLoader.cs
- ProfileModule.cs
- NamespaceQuery.cs
- NetworkAddressChange.cs
- IndexObject.cs
- Rotation3D.cs
- ColumnHeader.cs
- RegexReplacement.cs
- CompressionTransform.cs
- SqlDependency.cs
- RtType.cs
- ControlBuilderAttribute.cs
- TextMarkerSource.cs
- ItemsPanelTemplate.cs
- PropertyFilter.cs
- ListView.cs
- DialogResultConverter.cs
- Point3D.cs
- MessageBodyMemberAttribute.cs
- OperationGenerator.cs
- XmlAutoDetectWriter.cs
- BooleanFunctions.cs
- XmlILAnnotation.cs
- ItemCollectionEditor.cs
- EventLogger.cs
- StrokeCollectionConverter.cs
- HtmlAnchor.cs
- CapabilitiesSection.cs
- ArraySortHelper.cs
- ToolBarPanel.cs
- ApplicationSettingsBase.cs
- RowsCopiedEventArgs.cs
- TcpProcessProtocolHandler.cs
- PeerNodeAddress.cs
- XPathScanner.cs
- BindingUtils.cs
- ToolStripProfessionalLowResolutionRenderer.cs
- XmlArrayItemAttributes.cs
- HttpContextServiceHost.cs
- TableDetailsCollection.cs
- MemberJoinTreeNode.cs
- ByeMessageCD1.cs
- MeshGeometry3D.cs
- FormViewDeleteEventArgs.cs
- RouteCollection.cs
- ResourceDisplayNameAttribute.cs
- StringValueSerializer.cs
- StringUtil.cs
- DataBoundControl.cs
- ArcSegment.cs
- PathSegment.cs
- ProtocolsConfigurationHandler.cs
- UIElementHelper.cs
- ConfigurationSectionCollection.cs
- File.cs
- FormatSettings.cs
- FileLogRecordHeader.cs
- ModuleBuilderData.cs
- XpsFixedDocumentSequenceReaderWriter.cs
- AnimationException.cs
- HttpAsyncResult.cs
- HtmlInputRadioButton.cs
- QfeChecker.cs
- ResolveNameEventArgs.cs
- DropShadowEffect.cs