Code:
/ FX-1434 / FX-1434 / 1.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
- wgx_sdk_version.cs
- AccessorTable.cs
- ResourceSet.cs
- WpfKnownTypeInvoker.cs
- XmlJsonWriter.cs
- DoubleIndependentAnimationStorage.cs
- SQLDateTime.cs
- GeneralTransform2DTo3DTo2D.cs
- AppSecurityManager.cs
- SessionPageStateSection.cs
- ServiceBehaviorElement.cs
- SiteOfOriginContainer.cs
- TableDetailsCollection.cs
- TreeViewTemplateSelector.cs
- XmlEntityReference.cs
- NullableBoolConverter.cs
- SqlWriter.cs
- StandardMenuStripVerb.cs
- HybridCollection.cs
- PersonalizationEntry.cs
- TemplateColumn.cs
- ObjectDataSourceSelectingEventArgs.cs
- ErasingStroke.cs
- SynchronizedDispatch.cs
- FamilyMap.cs
- LayoutExceptionEventArgs.cs
- EndpointIdentityConverter.cs
- BindingCollection.cs
- OdbcStatementHandle.cs
- DataControlFieldHeaderCell.cs
- localization.cs
- JoinCqlBlock.cs
- DiscardableAttribute.cs
- WebPartConnectVerb.cs
- FormsIdentity.cs
- SmiEventSink_DeferedProcessing.cs
- Misc.cs
- TransactionProxy.cs
- tooltip.cs
- _Semaphore.cs
- XPathNode.cs
- FileLevelControlBuilderAttribute.cs
- NotifyIcon.cs
- querybuilder.cs
- AssemblyFilter.cs
- FrameworkElementFactoryMarkupObject.cs
- ListParagraph.cs
- IdentityModelDictionary.cs
- QualifiedCellIdBoolean.cs
- SwitchElementsCollection.cs
- DATA_BLOB.cs
- AccessorTable.cs
- HMACSHA256.cs
- SelectionRangeConverter.cs
- BamlBinaryReader.cs
- WebHttpBindingCollectionElement.cs
- SchemaMapping.cs
- WebPartChrome.cs
- InvalidWMPVersionException.cs
- CachedBitmap.cs
- SEHException.cs
- TextMarkerSource.cs
- SqlBuilder.cs
- BasicExpressionVisitor.cs
- XD.cs
- Utils.cs
- SplitContainer.cs
- MouseOverProperty.cs
- NegotiateStream.cs
- CompensationDesigner.cs
- DataGridItem.cs
- HtmlLink.cs
- Configuration.cs
- BuiltInPermissionSets.cs
- MediaElementAutomationPeer.cs
- CopyOnWriteList.cs
- XmlExpressionDumper.cs
- DispatcherTimer.cs
- PeerHopCountAttribute.cs
- RangeValidator.cs
- CodeNamespaceImport.cs
- HtmlHead.cs
- CodeIdentifier.cs
- BuildProvider.cs
- DataListItemEventArgs.cs
- PageThemeBuildProvider.cs
- RemotingSurrogateSelector.cs
- DiffuseMaterial.cs
- SqlTransaction.cs
- PresentationSource.cs
- ColorInterpolationModeValidation.cs
- BCLDebug.cs
- VectorCollectionValueSerializer.cs
- NamedPipeChannelListener.cs
- RelationshipConstraintValidator.cs
- DataDocumentXPathNavigator.cs
- QilNode.cs
- PreProcessor.cs
- DmlSqlGenerator.cs
- UserPreferenceChangingEventArgs.cs