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
- TreeNodeConverter.cs
- Int32CollectionConverter.cs
- EntityDataSourceQueryBuilder.cs
- Int16KeyFrameCollection.cs
- SessionPageStateSection.cs
- StyleCollection.cs
- XDeferredAxisSource.cs
- newinstructionaction.cs
- HyperLinkStyle.cs
- safelinkcollection.cs
- IPAddressCollection.cs
- WorkflowControlEndpoint.cs
- Oid.cs
- IList.cs
- SqlConnectionHelper.cs
- AccessViolationException.cs
- DataGrid.cs
- FrameworkElementFactoryMarkupObject.cs
- EntityDataSourceContextDisposingEventArgs.cs
- CellPartitioner.cs
- EtwTrace.cs
- CodeExpressionRuleDeclaration.cs
- Point3DCollection.cs
- ProgressBarBrushConverter.cs
- CodeLinePragma.cs
- ProofTokenCryptoHandle.cs
- ConstructorBuilder.cs
- CallContext.cs
- StorageComplexPropertyMapping.cs
- UserInitiatedNavigationPermission.cs
- TypeConverterHelper.cs
- DescendentsWalker.cs
- OpenTypeMethods.cs
- ObjectDataSourceEventArgs.cs
- UnsettableComboBox.cs
- Converter.cs
- XmlTextReaderImplHelpers.cs
- objectresult_tresulttype.cs
- ProtectedConfigurationProviderCollection.cs
- DBConnection.cs
- Maps.cs
- DispatcherHookEventArgs.cs
- QueueSurrogate.cs
- UriParserTemplates.cs
- ScrollData.cs
- ReadOnlyTernaryTree.cs
- MouseButton.cs
- TypographyProperties.cs
- OutputCacheProfile.cs
- ElementUtil.cs
- SubqueryRules.cs
- IssuedTokenParametersElement.cs
- PieceNameHelper.cs
- ListDictionaryInternal.cs
- SystemIPAddressInformation.cs
- Subset.cs
- ChangeNode.cs
- CallSiteBinder.cs
- SerializationStore.cs
- KeyMatchBuilder.cs
- AppLevelCompilationSectionCache.cs
- AsnEncodedData.cs
- InheritanceContextChangedEventManager.cs
- BrowserCapabilitiesFactoryBase.cs
- ThemeDirectoryCompiler.cs
- CqlLexer.cs
- PointUtil.cs
- SynthesizerStateChangedEventArgs.cs
- Icon.cs
- GregorianCalendar.cs
- SocketStream.cs
- EntityAdapter.cs
- MDIClient.cs
- UnsafeNetInfoNativeMethods.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- FeatureAttribute.cs
- GridViewDeletedEventArgs.cs
- ISFClipboardData.cs
- KnownBoxes.cs
- XmlToDatasetMap.cs
- EntityDataSourceSelectedEventArgs.cs
- DataTableReaderListener.cs
- Serializer.cs
- WebPartHeaderCloseVerb.cs
- Configuration.cs
- OnOperation.cs
- ListDictionaryInternal.cs
- References.cs
- GridViewAutomationPeer.cs
- SiblingIterators.cs
- Rights.cs
- AttributeUsageAttribute.cs
- ViewCellSlot.cs
- DataGridViewRowDividerDoubleClickEventArgs.cs
- TypeDescriptionProviderAttribute.cs
- DataRecordInternal.cs
- UIPermission.cs
- DropShadowEffect.cs
- ToolStripSettings.cs
- SecurityTokenAuthenticator.cs