IcmpV6Statistics.ErrorsSent 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 6 (ICMPv6) error messages sent.
public:
abstract property long ErrorsSent { long get(); };
public abstract long ErrorsSent { get; }
[System.Runtime.Versioning.UnsupportedOSPlatform("freebsd")]
[System.Runtime.Versioning.UnsupportedOSPlatform("ios")]
[System.Runtime.Versioning.UnsupportedOSPlatform("osx")]
[System.Runtime.Versioning.UnsupportedOSPlatform("tvos")]
public abstract long ErrorsSent { get; }
member this.ErrorsSent : int64
[<System.Runtime.Versioning.UnsupportedOSPlatform("freebsd")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("ios")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("osx")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("tvos")>]
member this.ErrorsSent : int64
Public MustOverride ReadOnly Property ErrorsSent As Long
Property Value
An Int64 value that specifies the total number of ICMP error messages sent.
- Attributes
Examples
The following example displays the value of this property.
void ShowIcmpV6ErrorData()
{
IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties();
IcmpV6Statistics ^ statistics = properties->GetIcmpV6Statistics();
Console::WriteLine( " Errors .............................. Sent: {0,-10} Received: {1,-10}",
statistics->ErrorsSent, statistics->ErrorsReceived );
}
public static void ShowIcmpV6ErrorData ()
{
IPGlobalProperties properties = IPGlobalProperties.GetIPGlobalProperties();
IcmpV6Statistics statistics = properties.GetIcmpV6Statistics();
Console.WriteLine (" Errors .............................. Sent: {0,-10} Received: {1,-10}",
statistics.ErrorsSent, statistics.ErrorsReceived);
}
Public Shared Sub ShowIcmpV6ErrorData()
Dim properties As IPGlobalProperties = IPGlobalProperties.GetIPGlobalProperties()
Dim statistics As IcmpV6Statistics = properties.GetIcmpV6Statistics()
Console.WriteLine(" Errors .............................. Sent: {0,-10} Received: {1,-10}", statistics.ErrorsSent, statistics.ErrorsReceived)
End Sub
Applies to
Sodelujte z nami v storitvi GitHub
Vir za to vsebino najdete v storitvi GitHub, kjer lahko tudi ustvarite in pregledate težave in zahtevke za uveljavitev sprememb. Če želite več informacij, glejte naš vodnik za sodelavce.