IcmpV6Statistics.MessagesReceived Özellik

Tanım

Alınan İnternet Denetim İletisi Protokolü sürüm 6 (ICMPv6) iletilerinin sayısını alır.

public:
 abstract property long MessagesReceived { long get(); };
[System.Runtime.Versioning.UnsupportedOSPlatform("freebsd")]
[System.Runtime.Versioning.UnsupportedOSPlatform("ios")]
[System.Runtime.Versioning.UnsupportedOSPlatform("osx")]
[System.Runtime.Versioning.UnsupportedOSPlatform("tvos")]
public abstract long MessagesReceived { get; }
public abstract long MessagesReceived { get; }
[<System.Runtime.Versioning.UnsupportedOSPlatform("freebsd")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("ios")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("osx")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("tvos")>]
member this.MessagesReceived : int64
member this.MessagesReceived : int64
Public MustOverride ReadOnly Property MessagesReceived As Long

Özellik Değeri

Int64 Alınan toplam ICMPv6 iletisinin sayısını belirten bir değer.

Öznitelikler

Örnekler

Aşağıdaki örnekte bu özelliğin değeri görüntülenir.

public static void ShowIcmpV6MessageData ()
{
    IPGlobalProperties properties = IPGlobalProperties.GetIPGlobalProperties();
    IcmpV6Statistics statistics = properties.GetIcmpV6Statistics();
    Console.WriteLine ("  Messages ............................ Sent: {0,-10}   Received: {1,-10}",
        statistics.MessagesSent, statistics.MessagesReceived);
}
Public Shared Sub ShowIcmpV6MessageData() 
    Dim properties As IPGlobalProperties = IPGlobalProperties.GetIPGlobalProperties()
    Dim statistics As IcmpV6Statistics = properties.GetIcmpV6Statistics()
    Console.WriteLine("  Messages ............................ Sent: {0,-10}   Received: {1,-10}", statistics.MessagesSent, statistics.MessagesReceived)

End Sub

Açıklamalar

ICMPv6 iletileri, İnternet Protokolü sürüm 6 (IPv6) kullanılarak gönderilen paketler hakkındaki hataları ve bilgileri iletmek için gönderilir.

Şunlara uygulanır