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
- Stroke2.cs
- CmsInterop.cs
- SharedUtils.cs
- SmiConnection.cs
- CheckBoxField.cs
- XmlSerializerAssemblyAttribute.cs
- WorkflowValidationFailedException.cs
- ProfileManager.cs
- MatrixAnimationUsingKeyFrames.cs
- ConfigurationPermission.cs
- InsufficientMemoryException.cs
- DbProviderFactoriesConfigurationHandler.cs
- ConstrainedDataObject.cs
- SecurityChannel.cs
- PrintPreviewDialog.cs
- PathFigureCollection.cs
- VectorCollection.cs
- SharedPerformanceCounter.cs
- UTF32Encoding.cs
- RoutedEvent.cs
- PhysicalOps.cs
- UnauthorizedAccessException.cs
- NegotiationTokenProvider.cs
- OdbcRowUpdatingEvent.cs
- WebControlParameterProxy.cs
- StringExpressionSet.cs
- XmlNamespaceMappingCollection.cs
- SafeReversePInvokeHandle.cs
- CellConstant.cs
- ObjectStateEntryOriginalDbUpdatableDataRecord.cs
- RegistryConfigurationProvider.cs
- DescendantBaseQuery.cs
- GenerateTemporaryTargetAssembly.cs
- XmlLanguageConverter.cs
- WorkflowDefinitionDispenser.cs
- OdbcConnectionFactory.cs
- TransformedBitmap.cs
- StorageRoot.cs
- SafeFileMappingHandle.cs
- ProfileSection.cs
- SerializationEventsCache.cs
- InvokeWebService.cs
- ImageListDesigner.cs
- ButtonFieldBase.cs
- SqlConnectionPoolProviderInfo.cs
- WebServiceTypeData.cs
- RuleRefElement.cs
- CqlGenerator.cs
- TextTreeObjectNode.cs
- Dictionary.cs
- StickyNoteAnnotations.cs
- ClearTypeHintValidation.cs
- rsa.cs
- RtfFormatStack.cs
- EventBookmark.cs
- HandledEventArgs.cs
- SecurityProtocolFactory.cs
- HttpWebRequestElement.cs
- CompositeScriptReferenceEventArgs.cs
- ListDictionaryInternal.cs
- ScopeElementCollection.cs
- SafeRegistryHandle.cs
- PropertySourceInfo.cs
- DocComment.cs
- BulletDecorator.cs
- DbDataSourceEnumerator.cs
- SafeFileMappingHandle.cs
- Material.cs
- ToolStripDropTargetManager.cs
- _OverlappedAsyncResult.cs
- TableRow.cs
- Msmq4SubqueuePoisonHandler.cs
- ScalarConstant.cs
- CreateUserErrorEventArgs.cs
- URLString.cs
- ColumnCollection.cs
- SchemaCollectionCompiler.cs
- Enlistment.cs
- Debug.cs
- TreeViewItemAutomationPeer.cs
- MissingSatelliteAssemblyException.cs
- CalendarDataBindingHandler.cs
- ContentType.cs
- EarlyBoundInfo.cs
- XPathDocument.cs
- ShapeTypeface.cs
- DesignColumnCollection.cs
- ProgressBarRenderer.cs
- DiscardableAttribute.cs
- MouseGestureValueSerializer.cs
- ParameterToken.cs
- ResourceDescriptionAttribute.cs
- figurelength.cs
- StyleCollection.cs
- CodeTypeReferenceSerializer.cs
- BindingGroup.cs
- FunctionImportMapping.cs
- KeyTimeConverter.cs
- ProcessHostFactoryHelper.cs
- SecurityTokenValidationException.cs