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
- XmlSchemaExporter.cs
- DesignerPerfEventProvider.cs
- RouteParser.cs
- _ProxyChain.cs
- IRCollection.cs
- XmlSchemaExporter.cs
- EntityContainerEmitter.cs
- TypeName.cs
- PenLineJoinValidation.cs
- TemplatedWizardStep.cs
- SkewTransform.cs
- IfAction.cs
- WindowsListBox.cs
- ToolStripItemRenderEventArgs.cs
- DependencyObjectType.cs
- SqlNotificationRequest.cs
- FontConverter.cs
- cache.cs
- ProjectionCamera.cs
- Action.cs
- SecurityContextSecurityTokenAuthenticator.cs
- PreProcessor.cs
- HandlerMappingMemo.cs
- ServiceDurableInstanceContextProvider.cs
- DataGridSortCommandEventArgs.cs
- SecurityState.cs
- DateTimeFormat.cs
- SimpleWebHandlerParser.cs
- Table.cs
- PeerCustomResolverElement.cs
- PrimitiveSchema.cs
- StyleSheetDesigner.cs
- AvTraceFormat.cs
- DBSchemaRow.cs
- MulticastNotSupportedException.cs
- GatewayDefinition.cs
- ApplyTemplatesAction.cs
- KernelTypeValidation.cs
- TimelineGroup.cs
- InputBindingCollection.cs
- StrokeNodeEnumerator.cs
- LineProperties.cs
- ActivationServices.cs
- FormsAuthenticationUserCollection.cs
- DBParameter.cs
- XPathException.cs
- EventRouteFactory.cs
- XmlBinaryWriterSession.cs
- DocumentXmlWriter.cs
- IDataContractSurrogate.cs
- TdsValueSetter.cs
- DeclarationUpdate.cs
- PropertyDescriptorComparer.cs
- TextTreeObjectNode.cs
- DataGridRow.cs
- GridItemPatternIdentifiers.cs
- MemberExpressionHelper.cs
- PropertyDescriptorGridEntry.cs
- OutputBuffer.cs
- shaperfactoryquerycachekey.cs
- MonthCalendarDesigner.cs
- MetadataItemEmitter.cs
- Figure.cs
- PixelFormat.cs
- TextEditorLists.cs
- DataGridColumn.cs
- infer.cs
- DecodeHelper.cs
- Rotation3D.cs
- CustomValidator.cs
- HelpKeywordAttribute.cs
- DataPagerFieldItem.cs
- LockCookie.cs
- DataGridColumnHeader.cs
- ListViewCommandEventArgs.cs
- QuotedStringWriteStateInfo.cs
- SqlRetyper.cs
- WsdlInspector.cs
- StringArrayConverter.cs
- InkCanvasSelection.cs
- AppSettingsSection.cs
- RoutedPropertyChangedEventArgs.cs
- SlotInfo.cs
- ManagedFilter.cs
- XmlHierarchyData.cs
- DragEvent.cs
- PackageDigitalSignatureManager.cs
- UrlMappingsSection.cs
- FontSource.cs
- XmlEncodedRawTextWriter.cs
- login.cs
- SemanticBasicElement.cs
- HashHelper.cs
- ScrollPattern.cs
- AutomationPatternInfo.cs
- StoreContentChangedEventArgs.cs
- MeasureItemEvent.cs
- ConfigurationLocation.cs
- EmptyImpersonationContext.cs
- EndpointIdentityExtension.cs