IcmpV6Statistics.DestinationUnreachableMessagesSent Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene il numero di messaggi del protocollo ICMPv6 inviati a causa di un pacchetto contenente un indirizzo di destinazione non raggiungibile.
public:
abstract property long DestinationUnreachableMessagesSent { long get(); };
public abstract long DestinationUnreachableMessagesSent { get; }
member this.DestinationUnreachableMessagesSent : int64
Public MustOverride ReadOnly Property DestinationUnreachableMessagesSent As Long
Valore della proprietà
Un valore Int64 che specifica il numero totale di messaggi Destination Unreachable inviati.
Esempio
Nell'esempio seguente viene visualizzato il valore di questa proprietà.
void ShowIcmpV6UnreachableData()
{
IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties();
IcmpV6Statistics ^ statistics = properties->GetIcmpV6Statistics();
Console::WriteLine( " Destination Unreachables ............ Sent: {0,-10} Received: {1,-10}",
statistics->DestinationUnreachableMessagesSent,
statistics->DestinationUnreachableMessagesReceived );
}
public static void ShowIcmpV6UnreachableData ()
{
IPGlobalProperties properties = IPGlobalProperties.GetIPGlobalProperties();
IcmpV6Statistics statistics = properties.GetIcmpV6Statistics();
Console.WriteLine (" Destination Unreachables ............ Sent: {0,-10} Received: {1,-10}",
statistics.DestinationUnreachableMessagesSent, statistics.DestinationUnreachableMessagesReceived);
}
Public Shared Sub ShowIcmpV6UnreachableData()
Dim properties As IPGlobalProperties = IPGlobalProperties.GetIPGlobalProperties()
Dim statistics As IcmpV6Statistics = properties.GetIcmpV6Statistics()
Console.WriteLine(" Destination Unreachables ............ Sent: {0,-10} Received: {1,-10}", statistics.DestinationUnreachableMessagesSent, statistics.DestinationUnreachableMessagesReceived)
End Sub
Commenti
Un messaggio di destinazione non raggiungibile può essere inviato al computer che rappresenta l'origine di un pacchetto per uno dei motivi seguenti:
Il computer non riesce a trovare una route all'indirizzo di destinazione.
La comunicazione con l'indirizzo di destinazione è vietata in modo amministrativo. Ad esempio, un firewall impedisce il recapito di pacchetti alla destinazione.
L'indirizzo di destinazione non è raggiungibile.
La porta di destinazione non è raggiungibile. Ad esempio, non è disponibile alcun listener per il protocollo del pacchetto.