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
- Size3DConverter.cs
- _ContextAwareResult.cs
- Tablet.cs
- XmlSchemaChoice.cs
- CookielessHelper.cs
- SelectedDatesCollection.cs
- TransportSecurityProtocolFactory.cs
- ServiceModelTimeSpanValidator.cs
- SiteOfOriginPart.cs
- CookielessHelper.cs
- oledbconnectionstring.cs
- CacheOutputQuery.cs
- SqlDataSourceStatusEventArgs.cs
- DoubleCollection.cs
- AssemblyName.cs
- DataControlImageButton.cs
- RequestResizeEvent.cs
- EmptyQuery.cs
- Documentation.cs
- SqlDataSourceEnumerator.cs
- ServiceDocumentFormatter.cs
- HtmlInputCheckBox.cs
- ResourceExpressionEditor.cs
- VisualCollection.cs
- CodePrimitiveExpression.cs
- WindowsRichEdit.cs
- OdbcConnection.cs
- Brush.cs
- ContextStack.cs
- HwndHost.cs
- newinstructionaction.cs
- MultiBindingExpression.cs
- BitmapSizeOptions.cs
- XmlUTF8TextWriter.cs
- MatrixTransform3D.cs
- TableItemStyle.cs
- NullableIntMinMaxAggregationOperator.cs
- DbDataRecord.cs
- ManualWorkflowSchedulerService.cs
- CardSpaceShim.cs
- SqlFlattener.cs
- SqlProviderServices.cs
- PropertyMapper.cs
- WebFormsRootDesigner.cs
- TracedNativeMethods.cs
- TickBar.cs
- ReflectionHelper.cs
- BitmapEffectDrawingContextState.cs
- JsonQNameDataContract.cs
- IResourceProvider.cs
- CodeParameterDeclarationExpressionCollection.cs
- PrintDocument.cs
- WindowsTokenRoleProvider.cs
- SecurityProtocolFactory.cs
- StylesEditorDialog.cs
- TrackingRecordPreFilter.cs
- ListenerConstants.cs
- DrawListViewSubItemEventArgs.cs
- SpellerError.cs
- XPathNavigator.cs
- PopupEventArgs.cs
- path.cs
- SafeProcessHandle.cs
- UserControlAutomationPeer.cs
- HasRunnableWorkflowEvent.cs
- TreeViewItemAutomationPeer.cs
- CommandLibraryHelper.cs
- FormsAuthenticationUserCollection.cs
- HashLookup.cs
- WhereQueryOperator.cs
- PasswordTextNavigator.cs
- _NativeSSPI.cs
- WebPartDisplayModeCollection.cs
- EntityClassGenerator.cs
- TriState.cs
- ServerType.cs
- AttributeCollection.cs
- ValidatorCompatibilityHelper.cs
- _ShellExpression.cs
- CodeArrayIndexerExpression.cs
- EpmCustomContentWriterNodeData.cs
- DESCryptoServiceProvider.cs
- StringFormat.cs
- BinaryQueryOperator.cs
- MediaTimeline.cs
- AnnotationObservableCollection.cs
- SmtpNtlmAuthenticationModule.cs
- IdleTimeoutMonitor.cs
- StylusPlugin.cs
- NotifyParentPropertyAttribute.cs
- HttpModuleAction.cs
- Model3D.cs
- SerialReceived.cs
- HttpListenerResponse.cs
- CustomLineCap.cs
- Selection.cs
- LocalBuilder.cs
- _SslState.cs
- WorkflowServiceInstance.cs
- OperationResponse.cs