TcpStatistics::ResetsSent Property

 

Gets the number of Transmission Control Protocol (TCP) segments sent with the reset flag set.

Namespace:   System.Net.NetworkInformation
Assembly:  System (in System.dll)

public:
property long long ResetsSent {
	virtual long long get() abstract;
}

Property Value

Type: System::Int64

An Int64 value that specifies the total number of TCP segments sent with the reset flag set.

TCP resets are specified using the reset (RST) control bit in the TCP header.

The following code example displays segment information.

void ShowTcpSegmentData()
{
   IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties();
   TcpStatistics ^ tcpstat = properties->GetTcpIPv4Statistics();
   Console::WriteLine( "  Segment Data:" );
   Console::WriteLine( "      Received  ........................... : {0}", 
      tcpstat->SegmentsReceived );
   Console::WriteLine( "      Sent ................................ : {0}", 
      tcpstat->SegmentsSent );
   Console::WriteLine( "      Retransmitted ....................... : {0}", 
      tcpstat->SegmentsResent );
   Console::WriteLine( "      Resent with reset ................... : {0}", 
      tcpstat->ResetsSent );
}

.NET Framework
Available since 2.0
Return to top
Show: