Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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); } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// 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
- PhysicalFontFamily.cs
- CardSpacePolicyElement.cs
- X509CertificateRecipientClientCredential.cs
- KnownTypeHelper.cs
- HttpListener.cs
- ConstructorExpr.cs
- FileDataSourceCache.cs
- SchemaObjectWriter.cs
- NestedContainer.cs
- ThemeableAttribute.cs
- MasterPageBuildProvider.cs
- WindowsTab.cs
- templategroup.cs
- TableSectionStyle.cs
- newitemfactory.cs
- RenderData.cs
- PropertyMetadata.cs
- XPathAncestorIterator.cs
- CodeVariableDeclarationStatement.cs
- Rijndael.cs
- DetailsViewUpdateEventArgs.cs
- Win32MouseDevice.cs
- PointHitTestResult.cs
- SQLDecimal.cs
- XmlAnyElementAttributes.cs
- XmlQualifiedName.cs
- DiscoveryDocument.cs
- OleCmdHelper.cs
- GPRECTF.cs
- CharAnimationUsingKeyFrames.cs
- DirectoryObjectSecurity.cs
- TextPattern.cs
- MarkupWriter.cs
- ListDictionary.cs
- MaskInputRejectedEventArgs.cs
- controlskin.cs
- OutputCacheSettings.cs
- MSAANativeProvider.cs
- EmissiveMaterial.cs
- DesignRelation.cs
- BitmapInitialize.cs
- CollectionViewGroupInternal.cs
- UnwrappedTypesXmlSerializerManager.cs
- DataStreamFromComStream.cs
- DoubleLinkListEnumerator.cs
- As.cs
- FrameworkContentElement.cs
- KeyToListMap.cs
- FramingFormat.cs
- X509CertificateStore.cs
- StructuralCache.cs
- Win32SafeHandles.cs
- HttpCachePolicyElement.cs
- EncryptedKeyIdentifierClause.cs
- ScaleTransform.cs
- RepeatBehaviorConverter.cs
- HTTPNotFoundHandler.cs
- RegistryPermission.cs
- CallbackHandler.cs
- StateMachineWorkflowInstance.cs
- MetadataItemSerializer.cs
- ListViewDesigner.cs
- ContractTypeNameElement.cs
- COM2IDispatchConverter.cs
- MissingMemberException.cs
- ObjectItemCollection.cs
- HttpCacheVary.cs
- LateBoundChannelParameterCollection.cs
- CollectionViewGroupRoot.cs
- ManipulationDeltaEventArgs.cs
- ListItemsPage.cs
- SettingsProperty.cs
- TriggerAction.cs
- GuidelineSet.cs
- EditorZoneBase.cs
- IntegerFacetDescriptionElement.cs
- MouseEventArgs.cs
- NonParentingControl.cs
- Utils.cs
- TextRangeProviderWrapper.cs
- XmlValueConverter.cs
- AssemblyNameProxy.cs
- KeyboardEventArgs.cs
- LabelAutomationPeer.cs
- Automation.cs
- DragDrop.cs
- Certificate.cs
- FormsAuthentication.cs
- TemplateBuilder.cs
- DataGridViewRowConverter.cs
- UriTemplateLiteralPathSegment.cs
- TextElementCollection.cs
- WinInetCache.cs
- EncoderParameter.cs
- PenContext.cs
- FormViewModeEventArgs.cs
- ControlPropertyNameConverter.cs
- SqlProviderUtilities.cs
- DesignTimeParseData.cs
- NotifyParentPropertyAttribute.cs