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
- Memoizer.cs
- StaticDataManager.cs
- SchemaMapping.cs
- Brushes.cs
- PartialTrustValidationBehavior.cs
- ServiceInstallComponent.cs
- DelimitedListTraceListener.cs
- Page.cs
- TypeGeneratedEventArgs.cs
- COMException.cs
- ProgressBar.cs
- VarRemapper.cs
- GestureRecognitionResult.cs
- GZipStream.cs
- UnionCodeGroup.cs
- HijriCalendar.cs
- ProjectionPlanCompiler.cs
- CookieHandler.cs
- JsonXmlDataContract.cs
- Style.cs
- TextRunTypographyProperties.cs
- StreamBodyWriter.cs
- IisTraceWebEventProvider.cs
- AccessDataSourceView.cs
- GcSettings.cs
- TrustLevelCollection.cs
- UnsafeNativeMethodsMilCoreApi.cs
- GridViewRowCollection.cs
- SafeHandles.cs
- WorkflowInvoker.cs
- UTF32Encoding.cs
- DropShadowBitmapEffect.cs
- Equal.cs
- NotSupportedException.cs
- DataColumnChangeEvent.cs
- RequestResizeEvent.cs
- CodeIdentifiers.cs
- ResourceManager.cs
- PathFigure.cs
- DataGridViewCellValidatingEventArgs.cs
- RevocationPoint.cs
- TypedReference.cs
- ProcessProtocolHandler.cs
- PageThemeCodeDomTreeGenerator.cs
- GridToolTip.cs
- ImpersonationContext.cs
- SystemDiagnosticsSection.cs
- Preprocessor.cs
- PrinterResolution.cs
- TypeConverterAttribute.cs
- ComponentDispatcher.cs
- PageParser.cs
- ClientProtocol.cs
- ResourceAssociationSetEnd.cs
- SafeCertificateStore.cs
- SqlTypeSystemProvider.cs
- NamespaceInfo.cs
- metadatamappinghashervisitor.cs
- ProviderConnectionPoint.cs
- Win32Exception.cs
- XmlTextReaderImpl.cs
- SqlCommandSet.cs
- UniqueIdentifierService.cs
- ApplicationSettingsBase.cs
- DataSourceSelectArguments.cs
- ReliableChannelBinder.cs
- DataGridView.cs
- LambdaCompiler.Lambda.cs
- Dispatcher.cs
- ConnectionManagementElementCollection.cs
- HttpContext.cs
- HttpCookiesSection.cs
- QueuePropertyVariants.cs
- InitializationEventAttribute.cs
- Cursors.cs
- FloatAverageAggregationOperator.cs
- WebPartChrome.cs
- StylesEditorDialog.cs
- UserControl.cs
- Profiler.cs
- XamlTemplateSerializer.cs
- ControlIdConverter.cs
- Helper.cs
- Matrix3DStack.cs
- NameTable.cs
- TraceListener.cs
- XappLauncher.cs
- nulltextcontainer.cs
- UnsignedPublishLicense.cs
- ActivationWorker.cs
- LowerCaseStringConverter.cs
- DefaultAuthorizationContext.cs
- GroupByQueryOperator.cs
- OdbcConnectionPoolProviderInfo.cs
- QueueAccessMode.cs
- ErrorHandler.cs
- BinaryMessageFormatter.cs
- TextCompositionEventArgs.cs
- SQLStringStorage.cs
- DesignerFrame.cs