IcmpV4Statistics.RedirectsSent 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 Control Message Protocol version 4 (ICMPv4) Redirect messages that were sent.
public:
abstract property long RedirectsSent { long get(); };
public abstract long RedirectsSent { get; }
member this.RedirectsSent : int64
Public MustOverride ReadOnly Property RedirectsSent As Long
Property Value
An Int64 value that specifies the total number of ICMP Redirect messages that were sent.
Examples
The following example displays the value of this property.
void ShowRedirectsData()
{
IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties();
IcmpV4Statistics ^ statistics = properties->GetIcmpV4Statistics();
Console::WriteLine( " Redirects ........................... Sent: {0,-10} Received: {1,-10}",
statistics->RedirectsSent,
statistics->RedirectsReceived );
}
public static void ShowRedirectsData()
{
IPGlobalProperties properties = IPGlobalProperties.GetIPGlobalProperties();
IcmpV4Statistics statistics = properties.GetIcmpV4Statistics();
Console.WriteLine(" Redirects ........................... Sent: {0,-10} Received: {1,-10}",
statistics.RedirectsSent, statistics.RedirectsReceived);
}
Public Shared Sub ShowRedirectsData()
Dim properties As IPGlobalProperties = IPGlobalProperties.GetIPGlobalProperties()
Dim statistics As IcmpV4Statistics = properties.GetIcmpV4Statistics()
Console.WriteLine(" Redirects ........................... Sent: {0,-10} Received: {1,-10}", statistics.RedirectsSent, statistics.RedirectsReceived)
End Sub
Remarks
Redirect messages are sent by routers to inform a host computer of a better route for a destination address.
Applies to
Met ons samenwerken op GitHub
De bron voor deze inhoud vindt u op GitHub, waar u ook problemen en pull-aanvragen kunt maken en controleren. Bekijk onze gids voor inzenders voor meer informatie.