Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Net / System / Net / Configuration / Ipv6Element.cs / 1305376 / Ipv6Element.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.Net.Configuration
{
using System;
using System.Configuration;
using System.Reflection;
using System.Security.Permissions;
public sealed class Ipv6Element : ConfigurationElement
{
public Ipv6Element()
{
this.properties.Add(this.enabled);
}
protected override ConfigurationPropertyCollection Properties
{
get
{
return this.properties;
}
}
[ConfigurationProperty(ConfigurationStrings.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(ConfigurationStrings.Enabled, typeof(bool), false,
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
- AccessViolationException.cs
- URLString.cs
- WeakReferenceKey.cs
- Canvas.cs
- FtpWebRequest.cs
- BreadCrumbTextConverter.cs
- SQLDateTime.cs
- XamlSerializer.cs
- DataGridCellAutomationPeer.cs
- WebProxyScriptElement.cs
- SplineKeyFrames.cs
- IsolatedStoragePermission.cs
- References.cs
- DefaultHttpHandler.cs
- DtrList.cs
- SafeFileMapViewHandle.cs
- ActivationService.cs
- WizardPanel.cs
- HashCodeCombiner.cs
- CodeGeneratorOptions.cs
- CodeFieldReferenceExpression.cs
- DataTable.cs
- Privilege.cs
- SqlLiftIndependentRowExpressions.cs
- Baml2006ReaderSettings.cs
- DesignerActionService.cs
- Error.cs
- SByteConverter.cs
- VirtualPath.cs
- BamlMapTable.cs
- DbConnectionOptions.cs
- ContainerParagraph.cs
- BindingUtils.cs
- MenuStrip.cs
- CompilationPass2Task.cs
- DataGridParentRows.cs
- XamlSerializationHelper.cs
- UnknownBitmapDecoder.cs
- DataServiceQuery.cs
- BitmapMetadataBlob.cs
- control.ime.cs
- Rectangle.cs
- PersonalizationDictionary.cs
- WebPartMinimizeVerb.cs
- DataServiceKeyAttribute.cs
- Clipboard.cs
- UriTemplateTableMatchCandidate.cs
- DesignSurface.cs
- NativeCompoundFileAPIs.cs
- XmlWriterSettings.cs
- MetabaseServerConfig.cs
- NativeCompoundFileAPIs.cs
- TiffBitmapDecoder.cs
- DataBoundLiteralControl.cs
- ControlBuilder.cs
- TextBoxBase.cs
- BooleanAnimationBase.cs
- ZipIOFileItemStream.cs
- NotifyInputEventArgs.cs
- CollectionViewGroupRoot.cs
- HtmlSelect.cs
- ValidateNames.cs
- ConfigXmlWhitespace.cs
- Transactions.cs
- WsdlServiceChannelBuilder.cs
- SlipBehavior.cs
- Message.cs
- ElapsedEventArgs.cs
- ServicePointManagerElement.cs
- NumericPagerField.cs
- WorkflowWebHostingModule.cs
- ItemsPanelTemplate.cs
- ImportContext.cs
- TextDecoration.cs
- XmlSchemaProviderAttribute.cs
- HttpApplicationStateBase.cs
- ParallelTimeline.cs
- DataViewSetting.cs
- LocalIdKeyIdentifierClause.cs
- BlurBitmapEffect.cs
- SqlFacetAttribute.cs
- LongTypeConverter.cs
- ProcessThreadCollection.cs
- CompiledIdentityConstraint.cs
- Compensation.cs
- PolicyException.cs
- SelfIssuedTokenFactoryCredential.cs
- ComplexPropertyEntry.cs
- Int32Animation.cs
- ContentDesigner.cs
- MarkupObject.cs
- ExpressionBuilderContext.cs
- TokenFactoryBase.cs
- EntityTypeEmitter.cs
- ListViewTableRow.cs
- SimplePropertyEntry.cs
- RuleRef.cs
- NegationPusher.cs
- Compilation.cs
- DockProviderWrapper.cs