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
- SchemaImporterExtensionElementCollection.cs
- DynamicMethod.cs
- ProxyElement.cs
- WeakEventTable.cs
- LinkTarget.cs
- WindowsGraphicsCacheManager.cs
- GridViewCommandEventArgs.cs
- Debugger.cs
- ReferenceEqualityComparer.cs
- Error.cs
- RMPermissions.cs
- SmtpTransport.cs
- GlyphManager.cs
- ECDiffieHellmanCng.cs
- OwnerDrawPropertyBag.cs
- TimeZone.cs
- ObjectQuery_EntitySqlExtensions.cs
- PageWrapper.cs
- SiteOfOriginContainer.cs
- DocComment.cs
- TokenBasedSet.cs
- KerberosTicketHashIdentifierClause.cs
- DrawingContextDrawingContextWalker.cs
- DesignerMetadata.cs
- FontUnit.cs
- IsolationInterop.cs
- ParseHttpDate.cs
- Trace.cs
- RunWorkerCompletedEventArgs.cs
- EntityDesignerDataSourceView.cs
- HitTestFilterBehavior.cs
- CodePageUtils.cs
- Substitution.cs
- GridViewRow.cs
- TickBar.cs
- TripleDESCryptoServiceProvider.cs
- DesignerTransaction.cs
- PresentationSource.cs
- PictureBoxDesigner.cs
- Hashtable.cs
- ConfigUtil.cs
- OleDbErrorCollection.cs
- XDRSchema.cs
- ProviderSettings.cs
- LockCookie.cs
- StdRegProviderWrapper.cs
- StrokeDescriptor.cs
- FileBasedResourceGroveler.cs
- BitmapEffectOutputConnector.cs
- SafeTimerHandle.cs
- ObjectDataSourceMethodEventArgs.cs
- DropShadowBitmapEffect.cs
- IndexingContentUnit.cs
- BindingOperations.cs
- DataContractSerializerOperationGenerator.cs
- ManagementPath.cs
- FixedTextBuilder.cs
- SafeCryptContextHandle.cs
- VirtualPathUtility.cs
- SqlWebEventProvider.cs
- SqlCacheDependencySection.cs
- SByteStorage.cs
- ServiceProviders.cs
- ADMembershipProvider.cs
- MonthChangedEventArgs.cs
- GifBitmapEncoder.cs
- PolicyStatement.cs
- Expression.cs
- SplashScreenNativeMethods.cs
- ComboBoxAutomationPeer.cs
- EventToken.cs
- OutputCacheProfileCollection.cs
- PropertyRef.cs
- QueryStringParameter.cs
- Timer.cs
- SchemaElementDecl.cs
- TextBoxView.cs
- BindingList.cs
- DataGridViewRowHeightInfoNeededEventArgs.cs
- DataRow.cs
- shaper.cs
- WebBrowserContainer.cs
- ActivationServices.cs
- Permission.cs
- CodeSnippetExpression.cs
- WebHttpBinding.cs
- GeometryHitTestResult.cs
- CounterCreationDataConverter.cs
- XmlSerializerFactory.cs
- SecurityUtils.cs
- EntityContainerAssociationSet.cs
- PersonalizableAttribute.cs
- RangeExpression.cs
- CqlQuery.cs
- Variant.cs
- ArraySegment.cs
- ToolBarButtonClickEvent.cs
- EntityKeyElement.cs
- Roles.cs
- ImmutableObjectAttribute.cs