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
- CacheMemory.cs
- BinaryMethodMessage.cs
- MarkedHighlightComponent.cs
- ToolboxItemCollection.cs
- FileSecurity.cs
- ReaderWriterLock.cs
- WS2007HttpBindingCollectionElement.cs
- ControlValuePropertyAttribute.cs
- KeyEventArgs.cs
- SetterBase.cs
- ITextView.cs
- QueryExpression.cs
- TransformDescriptor.cs
- WebPartDescriptionCollection.cs
- XmlResolver.cs
- SqlBooleanMismatchVisitor.cs
- ProgressBarRenderer.cs
- SurrogateDataContract.cs
- DataGridLinkButton.cs
- LinqDataSourceView.cs
- ConfigUtil.cs
- SuppressIldasmAttribute.cs
- SymbolEqualComparer.cs
- peersecuritysettings.cs
- TypefaceCollection.cs
- Environment.cs
- SecurityDescriptor.cs
- StylusPointProperty.cs
- SafeNativeMethods.cs
- CFStream.cs
- DotExpr.cs
- _LocalDataStoreMgr.cs
- FilterEventArgs.cs
- PrimaryKeyTypeConverter.cs
- StateDesigner.LayoutSelectionGlyph.cs
- IpcChannel.cs
- GrammarBuilderPhrase.cs
- SqlNotificationRequest.cs
- JapaneseLunisolarCalendar.cs
- DBNull.cs
- RegexCharClass.cs
- MultipartIdentifier.cs
- ZipIOExtraField.cs
- Point3DIndependentAnimationStorage.cs
- CacheMode.cs
- TemplatePropertyEntry.cs
- ReferencedType.cs
- PropertyEmitterBase.cs
- Reference.cs
- BindableAttribute.cs
- CodeTypeOfExpression.cs
- InputLanguageCollection.cs
- ProtocolImporter.cs
- Part.cs
- ToolStripMenuItemCodeDomSerializer.cs
- RuntimeEnvironment.cs
- Underline.cs
- ConnectionConsumerAttribute.cs
- ObjectDataSourceView.cs
- GenerateDerivedKeyRequest.cs
- ObjectDataSourceEventArgs.cs
- HttpPostClientProtocol.cs
- TextEffect.cs
- MediaElementAutomationPeer.cs
- QueueSurrogate.cs
- WaitForChangedResult.cs
- DesignerTransactionCloseEvent.cs
- DirectoryNotFoundException.cs
- AssertSection.cs
- Knowncolors.cs
- UnderstoodHeaders.cs
- ImpersonationOption.cs
- FormsAuthenticationTicket.cs
- TypeConverterHelper.cs
- UIElementHelper.cs
- PrivilegedConfigurationManager.cs
- _ContextAwareResult.cs
- DataGridPreparingCellForEditEventArgs.cs
- UnionCodeGroup.cs
- NamespaceQuery.cs
- ComponentResourceKey.cs
- Pen.cs
- ProcessModelInfo.cs
- IdleTimeoutMonitor.cs
- WindowsSysHeader.cs
- DotExpr.cs
- ServiceProviders.cs
- NodeCounter.cs
- RemoteWebConfigurationHostStream.cs
- IconHelper.cs
- UTF32Encoding.cs
- XmlUTF8TextWriter.cs
- WSSecurityTokenSerializer.cs
- NativeMethodsCLR.cs
- DebugController.cs
- RubberbandSelector.cs
- KernelTypeValidation.cs
- ObjectViewListener.cs
- tabpagecollectioneditor.cs
- PagerSettings.cs