Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Net / System / Net / Configuration / Ipv6Element.cs / 1 / 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);
}
}
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ColumnBinding.cs
- DbExpressionBuilder.cs
- WorkflowMarkupSerializationProvider.cs
- SmiConnection.cs
- AssertFilter.cs
- PaintValueEventArgs.cs
- DataGrid.cs
- VisualState.cs
- RuleRef.cs
- RewritingPass.cs
- RequestResizeEvent.cs
- ActionFrame.cs
- XmlSerializationWriter.cs
- SurrogateEncoder.cs
- SynchronizedRandom.cs
- InternalSafeNativeMethods.cs
- FrameworkElement.cs
- FullTrustAssembly.cs
- TTSEvent.cs
- WebPartConnectionsCancelEventArgs.cs
- WebPartEditorApplyVerb.cs
- ViewUtilities.cs
- VirtualDirectoryMapping.cs
- ResourceIDHelper.cs
- RequestCache.cs
- SelfIssuedTokenFactoryCredential.cs
- Calendar.cs
- AQNBuilder.cs
- AnnotationComponentChooser.cs
- BuildManager.cs
- DesignerForm.cs
- FunctionParameter.cs
- ListControlBoundActionList.cs
- MenuAutoFormat.cs
- FullTextState.cs
- EUCJPEncoding.cs
- ImageButton.cs
- ClassicBorderDecorator.cs
- HttpCapabilitiesBase.cs
- OleDbWrapper.cs
- ConfigurationValues.cs
- figurelength.cs
- MimeFormImporter.cs
- Message.cs
- EditorZone.cs
- XamlTemplateSerializer.cs
- DisableDpiAwarenessAttribute.cs
- ItemContainerGenerator.cs
- XpsFilter.cs
- Freezable.cs
- DataMember.cs
- QueueAccessMode.cs
- HtmlAnchor.cs
- CapabilitiesUse.cs
- QueryResponse.cs
- FieldInfo.cs
- FunctionImportMapping.cs
- SupportingTokenDuplexChannel.cs
- SerializerDescriptor.cs
- SqlDataSourceFilteringEventArgs.cs
- GridViewColumnCollectionChangedEventArgs.cs
- Object.cs
- DetectEofStream.cs
- NativeMethods.cs
- CodeIdentifier.cs
- XamlSerializer.cs
- ApplicationGesture.cs
- CustomTypeDescriptor.cs
- PagedControl.cs
- PartitionResolver.cs
- CollectionTypeElement.cs
- CustomAttributeFormatException.cs
- altserialization.cs
- XmlElementList.cs
- StringExpressionSet.cs
- TextParentUndoUnit.cs
- GacUtil.cs
- CustomBinding.cs
- AuthenticationConfig.cs
- TypeConverterBase.cs
- ColumnPropertiesGroup.cs
- PagePropertiesChangingEventArgs.cs
- X509InitiatorCertificateClientElement.cs
- SelectionList.cs
- NativeWindow.cs
- WebConfigurationHost.cs
- ProfileService.cs
- DeviceContexts.cs
- HttpCapabilitiesEvaluator.cs
- NameTable.cs
- documentsequencetextcontainer.cs
- WindowsFont.cs
- MetadataPropertyvalue.cs
- FileNotFoundException.cs
- HttpRequestCacheValidator.cs
- MsmqIntegrationSecurityElement.cs
- InkCanvasInnerCanvas.cs
- _SecureChannel.cs
- DataControlCommands.cs
- GenericNameHandler.cs