Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Net / System / Net / NetworkInformation / SystemMulticastIPAddressInformation.cs / 1 / SystemMulticastIPAddressInformation.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; /// /// Provides support for ip configuation information and statistics. /// /// Specifies the Multicast addresses for an interface. ///OS < XP ////// internal class SystemMulticastIPAddressInformation:MulticastIPAddressInformation { private IpAdapterAddress adapterAddress; private SystemIPAddressInformation innerInfo; private SystemMulticastIPAddressInformation() { } /* // Consider removing. internal SystemMulticastIPAddressInformation(IpAdapterInfo ipAdapterInfo, IPAddress address){ innerInfo = new SystemIPAddressInformation(address); DateTime tempdate = new DateTime(1970,1,1); tempdate = tempdate.AddSeconds(ipAdapterInfo.leaseExpires); dhcpLeaseLifetime = (long)((tempdate - DateTime.UtcNow).TotalSeconds); } */ internal SystemMulticastIPAddressInformation(IpAdapterAddress adapterAddress, IPAddress ipAddress){ innerInfo = new SystemIPAddressInformation(adapterAddress,ipAddress); this.adapterAddress = adapterAddress; } ///public override IPAddress Address{get {return innerInfo.Address;}} /// /// The address is a cluster address and shouldn't be used by most applications. public override bool IsTransient{ get { return (innerInfo.IsTransient); } } ////// This address can be used for DNS. public override bool IsDnsEligible{ get { return (innerInfo.IsDnsEligible); } } ///public override PrefixOrigin PrefixOrigin{ get { if (! ComNetOS.IsPostWin2K) throw new PlatformNotSupportedException(SR.GetString(SR.WinXPRequired)); return PrefixOrigin.Other; } } /// public override SuffixOrigin SuffixOrigin{ get { if (! ComNetOS.IsPostWin2K) throw new PlatformNotSupportedException(SR.GetString(SR.WinXPRequired)); return SuffixOrigin.Other; } } /// /// IPv6 only. Specifies the duplicate address detection state. Only supported /// for IPv6. If called on an IPv4 address, will throw a "not supported" exception. public override DuplicateAddressDetectionState DuplicateAddressDetectionState{ get { if (! ComNetOS.IsPostWin2K) throw new PlatformNotSupportedException(SR.GetString(SR.WinXPRequired)); return DuplicateAddressDetectionState.Invalid; } } ////// Specifies the valid lifetime of the address in seconds. public override long AddressValidLifetime{ get { if (! ComNetOS.IsPostWin2K) throw new PlatformNotSupportedException(SR.GetString(SR.WinXPRequired)); return 0; } } ////// Specifies the prefered lifetime of the address in seconds. public override long AddressPreferredLifetime{ get { if (! ComNetOS.IsPostWin2K) throw new PlatformNotSupportedException(SR.GetString(SR.WinXPRequired)); return 0; } } ////// /// Specifies the prefered lifetime of the address in seconds. public override long DhcpLeaseLifetime{ get { return 0; } } //helper method that marshals the addressinformation into the classes internal static MulticastIPAddressInformationCollection ToAddressInformationCollection(IntPtr ptr) { //we don't know the number of addresses up front, so we create an arraylist //to temporarily store them. MulticastIPAddressInformationCollection addressList = new MulticastIPAddressInformationCollection(); //if there is no address, just return; if (ptr == IntPtr.Zero) return addressList; //get the first address IpAdapterAddress addr = (IpAdapterAddress)Marshal.PtrToStructure(ptr,typeof(IpAdapterAddress)); //determine the address family used to create the IPAddress AddressFamily family = (addr.address.addressLength > 16)?AddressFamily.InterNetworkV6:AddressFamily.InterNetwork; SocketAddress sockAddress = new SocketAddress(family,(int)addr.address.addressLength); Marshal.Copy(addr.address.address,sockAddress.m_Buffer,0,addr.address.addressLength); //unfortunately, the only way to currently create an ipaddress is through IPEndPoint IPEndPoint ep; if (family == AddressFamily.InterNetwork ) ep = (IPEndPoint)IPEndPoint.Any.Create(sockAddress); else ep = (IPEndPoint)IPEndPoint.IPv6Any.Create(sockAddress); //add the ipaddress to the arraylist addressList.InternalAdd(new SystemMulticastIPAddressInformation(addr,ep.Address)); //repeat for all of the addresses while ( addr.next != IntPtr.Zero ) { addr = (IpAdapterAddress)Marshal.PtrToStructure(addr.next,typeof(IpAdapterAddress)); //determine the address family used to create the IPAddress family = (addr.address.addressLength > 16)?AddressFamily.InterNetworkV6:AddressFamily.InterNetwork; sockAddress = new SocketAddress(family,(int)addr.address.addressLength); Marshal.Copy(addr.address.address,sockAddress.m_Buffer,0,addr.address.addressLength); //use the endpoint to create the ipaddress if (family == AddressFamily.InterNetwork ) ep = (IPEndPoint)IPEndPoint.Any.Create(sockAddress); else ep = (IPEndPoint)IPEndPoint.IPv6Any.Create(sockAddress); addressList.InternalAdd(new SystemMulticastIPAddressInformation(addr,ep.Address)); } return addressList; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. ////// 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; /// /// Provides support for ip configuation information and statistics. /// /// Specifies the Multicast addresses for an interface. ///OS < XP ////// internal class SystemMulticastIPAddressInformation:MulticastIPAddressInformation { private IpAdapterAddress adapterAddress; private SystemIPAddressInformation innerInfo; private SystemMulticastIPAddressInformation() { } /* // Consider removing. internal SystemMulticastIPAddressInformation(IpAdapterInfo ipAdapterInfo, IPAddress address){ innerInfo = new SystemIPAddressInformation(address); DateTime tempdate = new DateTime(1970,1,1); tempdate = tempdate.AddSeconds(ipAdapterInfo.leaseExpires); dhcpLeaseLifetime = (long)((tempdate - DateTime.UtcNow).TotalSeconds); } */ internal SystemMulticastIPAddressInformation(IpAdapterAddress adapterAddress, IPAddress ipAddress){ innerInfo = new SystemIPAddressInformation(adapterAddress,ipAddress); this.adapterAddress = adapterAddress; } ///public override IPAddress Address{get {return innerInfo.Address;}} /// /// The address is a cluster address and shouldn't be used by most applications. public override bool IsTransient{ get { return (innerInfo.IsTransient); } } ////// This address can be used for DNS. public override bool IsDnsEligible{ get { return (innerInfo.IsDnsEligible); } } ///public override PrefixOrigin PrefixOrigin{ get { if (! ComNetOS.IsPostWin2K) throw new PlatformNotSupportedException(SR.GetString(SR.WinXPRequired)); return PrefixOrigin.Other; } } /// public override SuffixOrigin SuffixOrigin{ get { if (! ComNetOS.IsPostWin2K) throw new PlatformNotSupportedException(SR.GetString(SR.WinXPRequired)); return SuffixOrigin.Other; } } /// /// IPv6 only. Specifies the duplicate address detection state. Only supported /// for IPv6. If called on an IPv4 address, will throw a "not supported" exception. public override DuplicateAddressDetectionState DuplicateAddressDetectionState{ get { if (! ComNetOS.IsPostWin2K) throw new PlatformNotSupportedException(SR.GetString(SR.WinXPRequired)); return DuplicateAddressDetectionState.Invalid; } } ////// Specifies the valid lifetime of the address in seconds. public override long AddressValidLifetime{ get { if (! ComNetOS.IsPostWin2K) throw new PlatformNotSupportedException(SR.GetString(SR.WinXPRequired)); return 0; } } ////// Specifies the prefered lifetime of the address in seconds. public override long AddressPreferredLifetime{ get { if (! ComNetOS.IsPostWin2K) throw new PlatformNotSupportedException(SR.GetString(SR.WinXPRequired)); return 0; } } ////// /// Specifies the prefered lifetime of the address in seconds. public override long DhcpLeaseLifetime{ get { return 0; } } //helper method that marshals the addressinformation into the classes internal static MulticastIPAddressInformationCollection ToAddressInformationCollection(IntPtr ptr) { //we don't know the number of addresses up front, so we create an arraylist //to temporarily store them. MulticastIPAddressInformationCollection addressList = new MulticastIPAddressInformationCollection(); //if there is no address, just return; if (ptr == IntPtr.Zero) return addressList; //get the first address IpAdapterAddress addr = (IpAdapterAddress)Marshal.PtrToStructure(ptr,typeof(IpAdapterAddress)); //determine the address family used to create the IPAddress AddressFamily family = (addr.address.addressLength > 16)?AddressFamily.InterNetworkV6:AddressFamily.InterNetwork; SocketAddress sockAddress = new SocketAddress(family,(int)addr.address.addressLength); Marshal.Copy(addr.address.address,sockAddress.m_Buffer,0,addr.address.addressLength); //unfortunately, the only way to currently create an ipaddress is through IPEndPoint IPEndPoint ep; if (family == AddressFamily.InterNetwork ) ep = (IPEndPoint)IPEndPoint.Any.Create(sockAddress); else ep = (IPEndPoint)IPEndPoint.IPv6Any.Create(sockAddress); //add the ipaddress to the arraylist addressList.InternalAdd(new SystemMulticastIPAddressInformation(addr,ep.Address)); //repeat for all of the addresses while ( addr.next != IntPtr.Zero ) { addr = (IpAdapterAddress)Marshal.PtrToStructure(addr.next,typeof(IpAdapterAddress)); //determine the address family used to create the IPAddress family = (addr.address.addressLength > 16)?AddressFamily.InterNetworkV6:AddressFamily.InterNetwork; sockAddress = new SocketAddress(family,(int)addr.address.addressLength); Marshal.Copy(addr.address.address,sockAddress.m_Buffer,0,addr.address.addressLength); //use the endpoint to create the ipaddress if (family == AddressFamily.InterNetwork ) ep = (IPEndPoint)IPEndPoint.Any.Create(sockAddress); else ep = (IPEndPoint)IPEndPoint.IPv6Any.Create(sockAddress); addressList.InternalAdd(new SystemMulticastIPAddressInformation(addr,ep.Address)); } return addressList; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- AnnotationStore.cs
- EntityConnectionStringBuilder.cs
- RegistrationServices.cs
- VectorAnimationBase.cs
- SimpleTextLine.cs
- _CookieModule.cs
- Walker.cs
- HttpWebRequest.cs
- TemplateBamlRecordReader.cs
- CollectionViewGroup.cs
- DriveInfo.cs
- TrustLevelCollection.cs
- ThumbAutomationPeer.cs
- C14NUtil.cs
- MessageBox.cs
- DiscoveryInnerClientManaged11.cs
- Timer.cs
- StateInitialization.cs
- CachedTypeface.cs
- XPathNodeList.cs
- DropSource.cs
- DragEventArgs.cs
- Point3DCollection.cs
- EventMappingSettings.cs
- DataPagerFieldCollection.cs
- KoreanLunisolarCalendar.cs
- BitmapEffectOutputConnector.cs
- IQueryable.cs
- WebPartZone.cs
- SoapAttributeOverrides.cs
- UndoEngine.cs
- KnownBoxes.cs
- ActivityCodeGenerator.cs
- WebPartsSection.cs
- QueryResponse.cs
- QueryPageSettingsEventArgs.cs
- MessageDecoder.cs
- LockCookie.cs
- SpAudioStreamWrapper.cs
- ClientConvert.cs
- Vector3DValueSerializer.cs
- DataGridViewCellCollection.cs
- LinkedResourceCollection.cs
- WorkflowExecutor.cs
- UnlockCardRequest.cs
- XPathNode.cs
- EndpointReference.cs
- Compiler.cs
- ZipIOLocalFileHeader.cs
- MouseCaptureWithinProperty.cs
- DecoderFallbackWithFailureFlag.cs
- PreProcessor.cs
- ValidatorUtils.cs
- ArglessEventHandlerProxy.cs
- EntitySetRetriever.cs
- PerfService.cs
- RegexInterpreter.cs
- DisplayMemberTemplateSelector.cs
- SymbolDocumentInfo.cs
- _SSPIWrapper.cs
- BooleanFunctions.cs
- DesignerActionKeyboardBehavior.cs
- Util.cs
- RTLAwareMessageBox.cs
- ScriptingProfileServiceSection.cs
- indexingfiltermarshaler.cs
- TerminatorSinks.cs
- DispatcherHookEventArgs.cs
- __Filters.cs
- ExceptionValidationRule.cs
- TemplatedMailWebEventProvider.cs
- _ScatterGatherBuffers.cs
- UnsafeNativeMethods.cs
- nulltextnavigator.cs
- Binding.cs
- EntitySqlQueryCacheEntry.cs
- VisualBasicDesignerHelper.cs
- DataGridViewHitTestInfo.cs
- CopyNamespacesAction.cs
- ActivityCompletionCallbackWrapper.cs
- StagingAreaInputItem.cs
- WebPartConnectionsDisconnectVerb.cs
- InputReferenceExpression.cs
- MetadataCollection.cs
- NetworkInterface.cs
- BoundingRectTracker.cs
- HttpClientChannel.cs
- URIFormatException.cs
- ApplicationServiceHelper.cs
- FacetChecker.cs
- ReversePositionQuery.cs
- AttributeUsageAttribute.cs
- InstanceDataCollection.cs
- MatrixStack.cs
- X500Name.cs
- SchemaElementLookUpTableEnumerator.cs
- ObjectNotFoundException.cs
- FormsAuthentication.cs
- BasicCellRelation.cs
- Propagator.ExtentPlaceholderCreator.cs