Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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);
}
}
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CheckBoxAutomationPeer.cs
- ReadWriteObjectLock.cs
- TextBlock.cs
- ISO2022Encoding.cs
- PlanCompilerUtil.cs
- EnterpriseServicesHelper.cs
- ShaderEffect.cs
- LocationUpdates.cs
- ContractTypeNameElement.cs
- LoginView.cs
- EntityDataSourceContextCreatingEventArgs.cs
- TextServicesCompartmentEventSink.cs
- SetterTriggerConditionValueConverter.cs
- UxThemeWrapper.cs
- XslCompiledTransform.cs
- VectorAnimationUsingKeyFrames.cs
- IIS7WorkerRequest.cs
- DataGridViewCellContextMenuStripNeededEventArgs.cs
- PathFigureCollection.cs
- Button.cs
- TransactionState.cs
- State.cs
- Wizard.cs
- CreateUserErrorEventArgs.cs
- Single.cs
- SqlDataSource.cs
- SwitchAttribute.cs
- CustomAttributeSerializer.cs
- ToolStripDropDownClosingEventArgs.cs
- StrokeCollectionConverter.cs
- HtmlTableRow.cs
- InputGestureCollection.cs
- XmlDocumentFragment.cs
- ImportCatalogPart.cs
- Common.cs
- RequestStatusBarUpdateEventArgs.cs
- XPathExpr.cs
- FolderBrowserDialog.cs
- EntityClientCacheKey.cs
- HelpOperationInvoker.cs
- UdpSocketReceiveManager.cs
- Type.cs
- ToolBarTray.cs
- ReflectionServiceProvider.cs
- ZoneIdentityPermission.cs
- CharacterShapingProperties.cs
- EntityModelSchemaGenerator.cs
- ConfigXmlWhitespace.cs
- SqlBuilder.cs
- EntityTypeBase.cs
- RequestQueryProcessor.cs
- ControlAdapter.cs
- TrackBar.cs
- PrinterSettings.cs
- DropDownList.cs
- Compiler.cs
- EnvelopedSignatureTransform.cs
- METAHEADER.cs
- SupportsEventValidationAttribute.cs
- TextSerializer.cs
- GeometryConverter.cs
- SerializationAttributes.cs
- ThreadStaticAttribute.cs
- HttpCookieCollection.cs
- SecurityToken.cs
- EntityKeyElement.cs
- rsa.cs
- AudioSignalProblemOccurredEventArgs.cs
- GlobalizationSection.cs
- MarkupExtensionParser.cs
- FunctionParameter.cs
- RegisteredArrayDeclaration.cs
- HelpProvider.cs
- CompositeDataBoundControl.cs
- GlobalItem.cs
- PixelFormats.cs
- RadioButton.cs
- ClipboardData.cs
- SqlRowUpdatedEvent.cs
- ElapsedEventArgs.cs
- LineMetrics.cs
- XmlSortKey.cs
- EventLogWatcher.cs
- BaseDataBoundControl.cs
- OleDbParameterCollection.cs
- BitmapCacheBrush.cs
- EditorResources.cs
- OuterGlowBitmapEffect.cs
- FunctionCommandText.cs
- DataSourceXmlTextReader.cs
- Matrix3D.cs
- IntegerValidatorAttribute.cs
- ScalarType.cs
- CookieProtection.cs
- JournalEntryStack.cs
- ViewStateModeByIdAttribute.cs
- KeyToListMap.cs
- ILGenerator.cs
- ObjectViewFactory.cs
- ArrayWithOffset.cs