Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / Net / System / Net / Configuration / IriParsingElement.cs / 1 / IriParsingElement.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { using System; public sealed class IriParsingElement : ConfigurationElement { public IriParsingElement() { this.properties.Add(this.enabled); } protected override ConfigurationPropertyCollection Properties { get{ return this.properties; } } [ConfigurationProperty(CommonConfigurationStrings.Enabled, DefaultValue = false)] 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), false, 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 { public IriParsingElement() { this.properties.Add(this.enabled); } protected override ConfigurationPropertyCollection Properties { get{ return this.properties; } } [ConfigurationProperty(CommonConfigurationStrings.Enabled, DefaultValue = false)] 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), false, 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
- PlatformNotSupportedException.cs
- MultipleViewPattern.cs
- VariableDesigner.xaml.cs
- RotateTransform3D.cs
- ListParagraph.cs
- ProxyAttribute.cs
- LayoutInformation.cs
- IndexedEnumerable.cs
- UniqueIdentifierService.cs
- ReadOnlyDataSourceView.cs
- Size.cs
- EventLog.cs
- ClrProviderManifest.cs
- ExpressionBinding.cs
- ArcSegment.cs
- ZipIOBlockManager.cs
- Visual3D.cs
- _SecureChannel.cs
- StateItem.cs
- DeferredTextReference.cs
- Currency.cs
- FrugalList.cs
- TogglePattern.cs
- XmlComplianceUtil.cs
- DebugInfoExpression.cs
- DiscoveryDocumentLinksPattern.cs
- UriScheme.cs
- Point3DAnimation.cs
- FrameworkContentElement.cs
- XmlSchemaObjectCollection.cs
- SqlCachedBuffer.cs
- CorruptingExceptionCommon.cs
- ToolZone.cs
- PropertyEntry.cs
- GreaterThanOrEqual.cs
- SelectionItemProviderWrapper.cs
- XmlSchemaAttribute.cs
- XmlDomTextWriter.cs
- AdornerHitTestResult.cs
- SignatureDescription.cs
- DataBindingCollection.cs
- NameValueCollection.cs
- SqlPersistenceWorkflowInstanceDescription.cs
- AppDomainManager.cs
- CqlErrorHelper.cs
- HostProtectionPermission.cs
- WebScriptServiceHost.cs
- RowTypePropertyElement.cs
- RenderingBiasValidation.cs
- HtmlShim.cs
- XmlLangPropertyAttribute.cs
- NamespaceMapping.cs
- RewritingValidator.cs
- TraceUtils.cs
- DependencyPropertyConverter.cs
- SystemDropShadowChrome.cs
- EdmFunctions.cs
- SqlTriggerAttribute.cs
- dataobject.cs
- dataprotectionpermissionattribute.cs
- NameValueSectionHandler.cs
- MenuItemBinding.cs
- ExceptionHandlersDesigner.cs
- XamlSerializer.cs
- ApplicationContext.cs
- Emitter.cs
- TakeOrSkipWhileQueryOperator.cs
- InvokeMethodActivity.cs
- ListItemConverter.cs
- RuleSettingsCollection.cs
- CacheChildrenQuery.cs
- ToolboxService.cs
- JsonEnumDataContract.cs
- assemblycache.cs
- ShaderEffect.cs
- OLEDB_Enum.cs
- Simplifier.cs
- MatrixTransform.cs
- AccessedThroughPropertyAttribute.cs
- DbMetaDataCollectionNames.cs
- MetadataArtifactLoaderResource.cs
- TerminatorSinks.cs
- TrackingStringDictionary.cs
- BinaryObjectReader.cs
- StringStorage.cs
- SqlDataReaderSmi.cs
- TagPrefixCollection.cs
- RecordConverter.cs
- DataGridTextColumn.cs
- MultipleViewProviderWrapper.cs
- RectValueSerializer.cs
- Expression.cs
- AmbientLight.cs
- XmlNodeChangedEventArgs.cs
- SelectingProviderEventArgs.cs
- DataTableCollection.cs
- TextFormatterImp.cs
- AutomationTextAttribute.cs
- AuthenticationSection.cs
- SecurityTokenRequirement.cs