4 writes to MulticastInterfaceId
System.ServiceModel.Channels (3)
System\ServiceModel\Channels\UdpTransportBindingElement.cs (1)
49this.MulticastInterfaceId = other.MulticastInterfaceId;
System\ServiceModel\Configuration\UdpTransportElement.cs (1)
26udpTransportBindingElement.MulticastInterfaceId = this.MulticastInterfaceId;
System\ServiceModel\UdpBinding.cs (1)
131set { this.udpTransport.MulticastInterfaceId = value; }
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\UdpTransportSettings.cs (1)
79this.UdpTransportBindingElement.MulticastInterfaceId = value;
11 references to MulticastInterfaceId
System.ServiceModel.Channels (10)
System\ServiceModel\Channels\UdpChannelFactory.cs (2)
200NetworkInterface[] adapters = UdpUtility.GetMulticastInterfaces(this.udpTransportBindingElement.MulticastInterfaceId); 203bool allowMulticastLoopback = !string.IsNullOrEmpty(this.udpTransportBindingElement.MulticastInterfaceId);
System\ServiceModel\Channels\UdpChannelListener.cs (2)
544NetworkInterface[] adapters = UdpUtility.GetMulticastInterfaces(udpTransportBindingElement.MulticastInterfaceId); 547bool allowMulticastLoopback = !string.IsNullOrEmpty(this.udpTransportBindingElement.MulticastInterfaceId);
System\ServiceModel\Channels\UdpTransportBindingElement.cs (3)
49this.MulticastInterfaceId = other.MulticastInterfaceId; 328if (!String.Equals(this.MulticastInterfaceId, udpTransport.MulticastInterfaceId, StringComparison.OrdinalIgnoreCase))
System\ServiceModel\Configuration\UdpTransportElement.cs (1)
40this.SetPropertyValueIfNotDefaultValue(UdpTransportConfigurationStrings.MulticastInterfaceId, udpTransportBindingElement.MulticastInterfaceId);
System\ServiceModel\UdpBinding.cs (2)
54this.MulticastInterfaceId = transport.MulticastInterfaceId; 130get { return this.udpTransport.MulticastInterfaceId; }
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\UdpTransportSettings.cs (1)
75return this.UdpTransportBindingElement.MulticastInterfaceId;