Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Net / System / Net / NetworkInformation / SystemIPv6InterfaceProperties.cs / 1 / SystemIPv6InterfaceProperties.cs
////// namespace System.Net.NetworkInformation { using System.Net; using System.Net.Sockets; using System; using System.Runtime.InteropServices; using System.Collections; using System.ComponentModel; using System.Security.Permissions; using Microsoft.Win32; internal class SystemIPv6InterfaceProperties:IPv6InterfaceProperties{ uint index = 0; uint mtu = 0; internal SystemIPv6InterfaceProperties(uint index, uint mtu) { this.index = index; this.mtu = mtu; } /// /// Provides support for ip configuation information and statistics. /// Specifies the Maximum transmission unit in bytes. Uses GetIFEntry. //We cache this to be consistent across all platforms public override int Index{ get { return (int)index; } } ///Specifies the Maximum transmission unit in bytes. Uses GetIFEntry. //We cache this to be consistent across all platforms public override int Mtu{ get { return (int) mtu; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ServiceProviders.cs
- ButtonChrome.cs
- XMLUtil.cs
- TaiwanLunisolarCalendar.cs
- RightsManagementPermission.cs
- SqlWriter.cs
- ListControl.cs
- StrokeNodeEnumerator.cs
- AuthenticationModeHelper.cs
- GridViewRowCollection.cs
- OraclePermission.cs
- XmlSerializerAssemblyAttribute.cs
- WindowsSysHeader.cs
- DeviceSpecificDesigner.cs
- Rules.cs
- PagerSettings.cs
- LayoutEditorPart.cs
- UIInitializationException.cs
- ColumnPropertiesGroup.cs
- WCFBuildProvider.cs
- MatrixTransform3D.cs
- HttpHeaderCollection.cs
- SqlSupersetValidator.cs
- XmlHierarchyData.cs
- WpfKnownType.cs
- SolidColorBrush.cs
- PermissionSet.cs
- WebException.cs
- NativeMethods.cs
- DataProtection.cs
- HwndProxyElementProvider.cs
- SqlClientMetaDataCollectionNames.cs
- MetadataExchangeBindings.cs
- IOException.cs
- DataControlButton.cs
- VScrollProperties.cs
- IssuerInformation.cs
- PathFigureCollectionConverter.cs
- IriParsingElement.cs
- IApplicationTrustManager.cs
- __ComObject.cs
- Stackframe.cs
- SerialReceived.cs
- SimpleLine.cs
- WindowsGraphics.cs
- DetailsViewInsertedEventArgs.cs
- PrintPreviewDialog.cs
- EventTask.cs
- Ref.cs
- Configuration.cs
- TypeExtensionSerializer.cs
- CaseCqlBlock.cs
- ImmutableDispatchRuntime.cs
- GCHandleCookieTable.cs
- WizardSideBarListControlItem.cs
- XmlSchemaAppInfo.cs
- KnownBoxes.cs
- Compilation.cs
- TokenizerHelper.cs
- CodeParameterDeclarationExpressionCollection.cs
- BaseDataBoundControl.cs
- XamlSerializerUtil.cs
- IndicShape.cs
- DesignerSerializationVisibilityAttribute.cs
- ConnectionProviderAttribute.cs
- TableLayoutRowStyleCollection.cs
- DbParameterHelper.cs
- CodeMethodReturnStatement.cs
- Menu.cs
- WindowsRichEdit.cs
- ProfileInfo.cs
- CodePropertyReferenceExpression.cs
- HelpProvider.cs
- DesignerActionMethodItem.cs
- DataListItemCollection.cs
- LabelLiteral.cs
- XmlLinkedNode.cs
- PreviewKeyDownEventArgs.cs
- XmlDataSourceDesigner.cs
- Environment.cs
- ResourceExpressionEditor.cs
- RightsManagementUser.cs
- SmtpClient.cs
- Vector3DConverter.cs
- VersionedStreamOwner.cs
- FormConverter.cs
- Int64.cs
- IntSecurity.cs
- SequenceDesigner.cs
- UnknownWrapper.cs
- ExpressionBuilder.cs
- FormsAuthenticationModule.cs
- WaitForChangedResult.cs
- StylusLogic.cs
- CheckBox.cs
- SemanticTag.cs
- Baml2006ReaderSettings.cs
- PathFigureCollectionValueSerializer.cs
- ZipIOCentralDirectoryFileHeader.cs
- SystemIPInterfaceProperties.cs