Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Net / System / Net / Sockets / MulticastOption.cs / 1305376 / MulticastOption.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net.Sockets { using System.Net; ////// public class MulticastOption { IPAddress group; IPAddress localAddress; int ifIndex; ////// Contains option values /// for IP multicast packets. /// ////// public MulticastOption(IPAddress group, IPAddress mcint) { if (group == null) { throw new ArgumentNullException("group"); } if (mcint == null) { throw new ArgumentNullException("mcint"); } Group = group; LocalAddress = mcint; } public MulticastOption(IPAddress group, int interfaceIndex) { if (group == null) { throw new ArgumentNullException("group"); } if ( interfaceIndex < 0 || interfaceIndex > 0x00FFFFFF ) { throw new ArgumentOutOfRangeException("interfaceIndex"); } #if !FEATURE_PAL if (!ComNetOS.IsPostWin2K){ throw new PlatformNotSupportedException(SR.GetString(SR.WinXPRequired)); } #endif // !FEATURE_PAL Group = group; ifIndex = interfaceIndex; } ////// Creates a new instance of the MulticaseOption class with the specified IP /// address group and local address. /// ////// public MulticastOption(IPAddress group) { if (group == null) { throw new ArgumentNullException("group"); } Group = group; LocalAddress = IPAddress.Any; } ////// Creates a new version of the MulticastOption class for the specified /// group. /// ////// public IPAddress Group { get { return group; } set { group = value; } } ////// Sets the IP address of a multicast group. /// ////// public IPAddress LocalAddress { get { return localAddress; } set { ifIndex = 0; localAddress = value; } } public int InterfaceIndex { get { return ifIndex; } set { if ( value < 0 || value > 0x00FFFFFF ) { throw new ArgumentOutOfRangeException("value"); } #if !FEATURE_PAL if (!ComNetOS.IsPostWin2K){ throw new PlatformNotSupportedException(SR.GetString(SR.WinXPRequired)); } #endif // !FEATURE_PAL localAddress = null; ifIndex = value; } } } // class MulticastOption ////// Sets the local address of a multicast group. /// ////// public class IPv6MulticastOption { IPAddress m_Group; long m_Interface; ////// Contains option values for joining an IPv6 multicast group. /// ////// public IPv6MulticastOption(IPAddress group, long ifindex) { if (group == null) { throw new ArgumentNullException("group"); } if ( ifindex < 0 || ifindex > 0x00000000FFFFFFFF ) { throw new ArgumentOutOfRangeException("ifindex"); } Group = group; InterfaceIndex = ifindex; } ////// Creates a new instance of the MulticaseOption class with the specified IP /// address group and local address. /// ////// public IPv6MulticastOption(IPAddress group) { if (group == null) { throw new ArgumentNullException("group"); } Group = group; InterfaceIndex = 0; } ////// Creates a new version of the MulticastOption class for the specified /// group. /// ////// public IPAddress Group { get { return m_Group; } set { if (value == null) { throw new ArgumentNullException("value"); } m_Group = value; } } ////// Sets the IP address of a multicast group. /// ////// public long InterfaceIndex { get { return m_Interface; } set { if ( value < 0 || value > 0x00000000FFFFFFFF ) { throw new ArgumentOutOfRangeException("value"); } m_Interface = value; } } } // class MulticastOptionIPv6 } // namespace System.Net.Sockets // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Sets the interface index. /// ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net.Sockets { using System.Net; ////// public class MulticastOption { IPAddress group; IPAddress localAddress; int ifIndex; ////// Contains option values /// for IP multicast packets. /// ////// public MulticastOption(IPAddress group, IPAddress mcint) { if (group == null) { throw new ArgumentNullException("group"); } if (mcint == null) { throw new ArgumentNullException("mcint"); } Group = group; LocalAddress = mcint; } public MulticastOption(IPAddress group, int interfaceIndex) { if (group == null) { throw new ArgumentNullException("group"); } if ( interfaceIndex < 0 || interfaceIndex > 0x00FFFFFF ) { throw new ArgumentOutOfRangeException("interfaceIndex"); } #if !FEATURE_PAL if (!ComNetOS.IsPostWin2K){ throw new PlatformNotSupportedException(SR.GetString(SR.WinXPRequired)); } #endif // !FEATURE_PAL Group = group; ifIndex = interfaceIndex; } ////// Creates a new instance of the MulticaseOption class with the specified IP /// address group and local address. /// ////// public MulticastOption(IPAddress group) { if (group == null) { throw new ArgumentNullException("group"); } Group = group; LocalAddress = IPAddress.Any; } ////// Creates a new version of the MulticastOption class for the specified /// group. /// ////// public IPAddress Group { get { return group; } set { group = value; } } ////// Sets the IP address of a multicast group. /// ////// public IPAddress LocalAddress { get { return localAddress; } set { ifIndex = 0; localAddress = value; } } public int InterfaceIndex { get { return ifIndex; } set { if ( value < 0 || value > 0x00FFFFFF ) { throw new ArgumentOutOfRangeException("value"); } #if !FEATURE_PAL if (!ComNetOS.IsPostWin2K){ throw new PlatformNotSupportedException(SR.GetString(SR.WinXPRequired)); } #endif // !FEATURE_PAL localAddress = null; ifIndex = value; } } } // class MulticastOption ////// Sets the local address of a multicast group. /// ////// public class IPv6MulticastOption { IPAddress m_Group; long m_Interface; ////// Contains option values for joining an IPv6 multicast group. /// ////// public IPv6MulticastOption(IPAddress group, long ifindex) { if (group == null) { throw new ArgumentNullException("group"); } if ( ifindex < 0 || ifindex > 0x00000000FFFFFFFF ) { throw new ArgumentOutOfRangeException("ifindex"); } Group = group; InterfaceIndex = ifindex; } ////// Creates a new instance of the MulticaseOption class with the specified IP /// address group and local address. /// ////// public IPv6MulticastOption(IPAddress group) { if (group == null) { throw new ArgumentNullException("group"); } Group = group; InterfaceIndex = 0; } ////// Creates a new version of the MulticastOption class for the specified /// group. /// ////// public IPAddress Group { get { return m_Group; } set { if (value == null) { throw new ArgumentNullException("value"); } m_Group = value; } } ////// Sets the IP address of a multicast group. /// ////// public long InterfaceIndex { get { return m_Interface; } set { if ( value < 0 || value > 0x00000000FFFFFFFF ) { throw new ArgumentOutOfRangeException("value"); } m_Interface = value; } } } // class MulticastOptionIPv6 } // namespace System.Net.Sockets // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Sets the interface index. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- OwnerDrawPropertyBag.cs
- CellPartitioner.cs
- CSharpCodeProvider.cs
- PackWebResponse.cs
- CompareValidator.cs
- ThreadStaticAttribute.cs
- FrameworkElementFactory.cs
- UshortList2.cs
- HelpExampleGenerator.cs
- NativeActivityFaultContext.cs
- DynamicExpression.cs
- DbConnectionStringBuilder.cs
- DataGridItemAttachedStorage.cs
- TreeViewItemAutomationPeer.cs
- SctClaimDictionary.cs
- BoundField.cs
- DataSourceGroupCollection.cs
- SolidBrush.cs
- DecimalAnimationBase.cs
- RequestCachePolicy.cs
- WebPartEditorApplyVerb.cs
- TypefaceMetricsCache.cs
- InternalConfigEventArgs.cs
- GenericXmlSecurityToken.cs
- ExceptionUtil.cs
- SetterTriggerConditionValueConverter.cs
- PassportPrincipal.cs
- ColorConvertedBitmapExtension.cs
- SoapExtensionImporter.cs
- NativeStructs.cs
- DataIdProcessor.cs
- TypedTableBaseExtensions.cs
- XmlSchemaComplexContentRestriction.cs
- BasePattern.cs
- Guid.cs
- PointLightBase.cs
- MobileFormsAuthentication.cs
- DBConnectionString.cs
- ContractCodeDomInfo.cs
- WebBrowserPermission.cs
- MimeMultiPart.cs
- ObservableCollection.cs
- MatrixConverter.cs
- CodeLabeledStatement.cs
- PersonalizationStateQuery.cs
- HostedElements.cs
- shaperfactory.cs
- AssemblyAttributes.cs
- ColumnResult.cs
- DataColumnCollection.cs
- SrgsRule.cs
- Int16KeyFrameCollection.cs
- Input.cs
- FontStretchConverter.cs
- IncrementalHitTester.cs
- XmlDataImplementation.cs
- FileChangeNotifier.cs
- WsdlWriter.cs
- BooleanFacetDescriptionElement.cs
- Message.cs
- Merger.cs
- InvalidFilterCriteriaException.cs
- VectorCollection.cs
- LogManagementAsyncResult.cs
- AcceleratedTokenProviderState.cs
- TextRangeEditTables.cs
- PointLightBase.cs
- ExpressionBuilderCollection.cs
- Misc.cs
- EventSinkHelperWriter.cs
- Rule.cs
- WebPartConnectionsDisconnectVerb.cs
- PolyLineSegmentFigureLogic.cs
- StoreItemCollection.Loader.cs
- EventManager.cs
- StructureChangedEventArgs.cs
- FlowPosition.cs
- CodeTypeReferenceCollection.cs
- Window.cs
- smtppermission.cs
- ValueTypeFixupInfo.cs
- ScrollProperties.cs
- BamlRecords.cs
- ZipIOLocalFileBlock.cs
- Drawing.cs
- ColumnBinding.cs
- ServicePoint.cs
- Trace.cs
- Point3DKeyFrameCollection.cs
- DataSourceCacheDurationConverter.cs
- SignedXml.cs
- ClaimSet.cs
- httpstaticobjectscollection.cs
- HelpInfo.cs
- UrlEncodedParameterWriter.cs
- WebServiceHost.cs
- PolyLineSegment.cs
- MimeObjectFactory.cs
- UserControl.cs
- DataGridBoolColumn.cs