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
- GifBitmapDecoder.cs
- DataGridViewComboBoxColumn.cs
- altserialization.cs
- TokenizerHelper.cs
- URLAttribute.cs
- IgnorePropertiesAttribute.cs
- SingleTagSectionHandler.cs
- Intellisense.cs
- SQLSingleStorage.cs
- FolderBrowserDialog.cs
- TextEditorLists.cs
- TypeConverterHelper.cs
- RuntimeEnvironment.cs
- SoapSchemaMember.cs
- PropertyDescriptor.cs
- DataIdProcessor.cs
- XmlEntityReference.cs
- AttributeProviderAttribute.cs
- CodeDelegateCreateExpression.cs
- WindowsTitleBar.cs
- ThrowHelper.cs
- SoundPlayer.cs
- DataGridView.cs
- base64Transforms.cs
- WebPartVerb.cs
- UpDownBaseDesigner.cs
- XmlSchemaValidationException.cs
- ComponentGlyph.cs
- Compiler.cs
- OdbcDataAdapter.cs
- SqlWorkflowInstanceStore.cs
- ServiceModelEnhancedConfigurationElementCollection.cs
- SimpleType.cs
- PerfCounters.cs
- SqlParameterCollection.cs
- WindowVisualStateTracker.cs
- Misc.cs
- StateDesigner.TransitionInfo.cs
- SessionConnectionReader.cs
- DesignerActionList.cs
- PointAnimation.cs
- SrgsText.cs
- XmlSchemaValidator.cs
- StandardToolWindows.cs
- WebCategoryAttribute.cs
- StrokeCollectionConverter.cs
- XmlUnspecifiedAttribute.cs
- RadioButtonBaseAdapter.cs
- ExtensibleClassFactory.cs
- DirectoryInfo.cs
- CompositeKey.cs
- WebPartRestoreVerb.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- Property.cs
- WindowsGraphicsCacheManager.cs
- MembershipSection.cs
- TextServicesDisplayAttribute.cs
- HijriCalendar.cs
- X509SecurityTokenProvider.cs
- OleDbError.cs
- ProfileProvider.cs
- KeyValuePair.cs
- DataTableMappingCollection.cs
- FunctionCommandText.cs
- SmtpLoginAuthenticationModule.cs
- SplineKeyFrames.cs
- AlternationConverter.cs
- ExpressionBuilderCollection.cs
- HttpRawResponse.cs
- TextStore.cs
- BamlLocalizableResourceKey.cs
- AutomationInteropProvider.cs
- ListDictionaryInternal.cs
- WebPartVerb.cs
- SignatureTargetIdManager.cs
- FormViewUpdatedEventArgs.cs
- TransformCollection.cs
- SamlSerializer.cs
- XmlDictionaryReader.cs
- NamespaceQuery.cs
- Tablet.cs
- DiscoveryEndpoint.cs
- AcceptorSessionSymmetricTransportSecurityProtocol.cs
- LoadWorkflowByKeyAsyncResult.cs
- InvokePatternIdentifiers.cs
- GrammarBuilder.cs
- ContentDisposition.cs
- PageBreakRecord.cs
- ArglessEventHandlerProxy.cs
- FrameworkElementAutomationPeer.cs
- MatrixTransform.cs
- ModulesEntry.cs
- ProcessManager.cs
- DefaultMemberAttribute.cs
- DelegatingConfigHost.cs
- FlatButtonAppearance.cs
- InkCanvasAutomationPeer.cs
- XmlSerializerAssemblyAttribute.cs
- ProcessHostConfigUtils.cs
- ObjectHandle.cs