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
- DataTableCollection.cs
- SvcMapFile.cs
- SamlSecurityTokenAuthenticator.cs
- TransformGroup.cs
- FreezableDefaultValueFactory.cs
- ConfigErrorGlyph.cs
- Object.cs
- HttpListenerRequest.cs
- ListSortDescriptionCollection.cs
- XmlCountingReader.cs
- TextBlock.cs
- NaturalLanguageHyphenator.cs
- RtfControls.cs
- CreateParams.cs
- SafeRightsManagementHandle.cs
- CheckBoxRenderer.cs
- ConnectionInterfaceCollection.cs
- DataContractSerializerServiceBehavior.cs
- WinFormsSpinner.cs
- SqlInternalConnection.cs
- ImageCodecInfo.cs
- SystemIcmpV4Statistics.cs
- Sql8ConformanceChecker.cs
- Currency.cs
- PeerObject.cs
- XPathMultyIterator.cs
- Effect.cs
- WebPartZone.cs
- GeneralTransform3D.cs
- MenuEventArgs.cs
- DesignSurface.cs
- BindingExpression.cs
- CultureInfo.cs
- Visual3D.cs
- EntityContainerEmitter.cs
- BasicSecurityProfileVersion.cs
- ComponentResourceKeyConverter.cs
- DataTemplateSelector.cs
- NavigationHelper.cs
- MultipleViewProviderWrapper.cs
- Keyboard.cs
- SocketPermission.cs
- MultiAsyncResult.cs
- CodeIterationStatement.cs
- TokenBasedSetEnumerator.cs
- XDRSchema.cs
- ConcurrencyBehavior.cs
- HelpEvent.cs
- GlobalizationAssembly.cs
- BitmapEditor.cs
- WeakReferenceKey.cs
- SystemColorTracker.cs
- GlyphManager.cs
- BinaryObjectReader.cs
- InstanceDataCollectionCollection.cs
- ControlIdConverter.cs
- DebugView.cs
- CompositeFontFamily.cs
- _UncName.cs
- DataGridAutoFormatDialog.cs
- SecurityPermission.cs
- EDesignUtil.cs
- ConfigurationStrings.cs
- FileUpload.cs
- MediaTimeline.cs
- PolyBezierSegment.cs
- InternalMappingException.cs
- IisTraceWebEventProvider.cs
- QueryIntervalOp.cs
- FormViewInsertEventArgs.cs
- HttpHandler.cs
- BaseCodePageEncoding.cs
- WebPartZone.cs
- UdpTransportSettingsElement.cs
- RtfNavigator.cs
- ADRoleFactory.cs
- JsonMessageEncoderFactory.cs
- ConditionalAttribute.cs
- BindUriHelper.cs
- ClientEventManager.cs
- DataGridCommandEventArgs.cs
- NullReferenceException.cs
- BitVec.cs
- PreviewPrintController.cs
- RequestCache.cs
- SafeProcessHandle.cs
- WebServiceErrorEvent.cs
- RuleRef.cs
- GB18030Encoding.cs
- SendingRequestEventArgs.cs
- SqlDataRecord.cs
- externdll.cs
- CodeTypeDeclaration.cs
- RSAOAEPKeyExchangeFormatter.cs
- tibetanshape.cs
- FontDifferentiator.cs
- followingquery.cs
- DataGridColumn.cs
- FileChangesMonitor.cs
- NativeObjectSecurity.cs