IcmpV6Statistics.MembershipReductionsSent Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the number of Internet Group Management Protocol (IGMP) Group Membership Reduction messages sent.
public:
abstract property long MembershipReductionsSent { long get(); };
public abstract long MembershipReductionsSent { get; }
member this.MembershipReductionsSent : int64
Public MustOverride ReadOnly Property MembershipReductionsSent As Long
Property Value
An Int64 value that specifies the total number of Group Membership Reduction messages sent.
Examples
The following example displays the value of this property.
void ShowIcmpV6MembershipData()
{
IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties();
IcmpV6Statistics ^ statistics = properties->GetIcmpV6Statistics();
Console::WriteLine( " Queries .............................. Sent: {0,-10} Received: {1,-10}",
statistics->MembershipQueriesSent, statistics->MembershipQueriesReceived );
Console::WriteLine( " Reductions ........................... Sent: {0,-10} Received: {1,-10}",
statistics->MembershipReductionsSent, statistics->MembershipReductionsReceived );
Console::WriteLine( " Reports .............................. Sent: {0,-10} Received: {1,-10}",
statistics->MembershipReportsSent, statistics->MembershipReportsReceived );
}
public static void ShowIcmpV6MembershipData ()
{
IPGlobalProperties properties = IPGlobalProperties.GetIPGlobalProperties();
IcmpV6Statistics statistics = properties.GetIcmpV6Statistics();
Console.WriteLine (" Queries .............................. Sent: {0,-10} Received: {1,-10}",
statistics.MembershipQueriesSent, statistics.MembershipQueriesReceived);
Console.WriteLine (" Reductions ........................... Sent: {0,-10} Received: {1,-10}",
statistics.MembershipReductionsSent, statistics.MembershipReductionsReceived);
Console.WriteLine (" Reports .............................. Sent: {0,-10} Received: {1,-10}",
statistics.MembershipReportsSent, statistics.MembershipReportsReceived);
}
Public Shared Sub ShowIcmpV6MembershipData()
Dim properties As IPGlobalProperties = IPGlobalProperties.GetIPGlobalProperties()
Dim statistics As IcmpV6Statistics = properties.GetIcmpV6Statistics()
Console.WriteLine(" Queries .............................. Sent: {0,-10} Received: {1,-10}", statistics.MembershipQueriesSent, statistics.MembershipQueriesReceived)
Console.WriteLine(" Reductions ........................... Sent: {0,-10} Received: {1,-10}", statistics.MembershipReductionsSent, statistics.MembershipReductionsReceived)
Console.WriteLine(" Reports .............................. Sent: {0,-10} Received: {1,-10}", statistics.MembershipReportsSent, statistics.MembershipReportsReceived)
End Sub
Remarks
Multicast routers send Group Membership Query messages to learn which groups have members on each of their attached physical networks. Host computers respond to a Group Membership Query message by sending a Group Membership Report for each multicast group joined by the host. A host computer can also send a Group Membership Report when it joins a new multicast group. Group Membership Reduction messages are sent when a host computer leaves a multicast group.