UdpStatistics.IncomingDatagramsWithErrors Propriedade

Definição

Obtém o número de datagramas de protocolo UDP recebidos e descartados devido a erros que não sejam informações de porta incorretas.Gets the number of User Datagram Protocol (UDP) datagrams that were received and discarded because of errors other than bad port information.

public:
 abstract property long IncomingDatagramsWithErrors { long get(); };
public abstract long IncomingDatagramsWithErrors { get; }
member this.IncomingDatagramsWithErrors : int64
Public MustOverride ReadOnly Property IncomingDatagramsWithErrors As Long

Valor da propriedade

Int64

Um Int64 valor que especifica o número total de datagramas UDP recebidos que não puderam ser entregues por motivos diferentes da falta de um aplicativo na porta de destino.An Int64 value that specifies the total number of received UDP datagrams that could not be delivered for reasons other than the lack of an application at the destination port.

Exemplos

O exemplo de código a seguir exibe as estatísticas de UDP para a versão de protocolo da Internet especificada.The following code example displays the UDP statistics for the specified Internet Protocol version.

void ShowUdpStatistics( NetworkInterfaceComponent version )
{
   IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties();
   UdpStatistics ^ udpStat = nullptr;
   switch ( version )
   {
      case NetworkInterfaceComponent::IPv4:
         udpStat = properties->GetUdpIPv4Statistics();
         Console::WriteLine( "UDP IPv4 Statistics" );
         break;

      case NetworkInterfaceComponent::IPv6:
         udpStat = properties->GetUdpIPv6Statistics();
         Console::WriteLine( "UDP IPv6 Statistics" );
         break;

      default:
         throw gcnew ArgumentException( "version" );
         break;
   }
   Console::WriteLine( "  Datagrams Received ...................... : {0}", udpStat->DatagramsReceived );
   Console::WriteLine( "  Datagrams Sent .......................... : {0}", udpStat->DatagramsSent );
   Console::WriteLine( "  Incoming Datagrams Discarded ............ : {0}", udpStat->IncomingDatagramsDiscarded );
   Console::WriteLine( "  Incoming Datagrams With Errors .......... : {0}", udpStat->IncomingDatagramsWithErrors );
   Console::WriteLine( "  UDP Listeners ........................... : {0}", udpStat->UdpListeners );
   Console::WriteLine( "" );
}
public static void ShowUdpStatistics(NetworkInterfaceComponent version)
{
    IPGlobalProperties properties = IPGlobalProperties.GetIPGlobalProperties();
    UdpStatistics udpStat = null;

    switch (version)
    {
        case NetworkInterfaceComponent.IPv4:
            udpStat = properties.GetUdpIPv4Statistics();
            Console.WriteLine("UDP IPv4 Statistics");
            break;
        case NetworkInterfaceComponent.IPv6:
            udpStat = properties.GetUdpIPv6Statistics();
            Console.WriteLine("UDP IPv6 Statistics");
            break;
        default:
            throw new ArgumentException("version");
        //    break;
    }
    Console.WriteLine("  Datagrams Received ...................... : {0}",
        udpStat.DatagramsReceived);
    Console.WriteLine("  Datagrams Sent .......................... : {0}",
        udpStat.DatagramsSent);
    Console.WriteLine("  Incoming Datagrams Discarded ............ : {0}",
        udpStat.IncomingDatagramsDiscarded);
    Console.WriteLine("  Incoming Datagrams With Errors .......... : {0}",
        udpStat.IncomingDatagramsWithErrors);
    Console.WriteLine("  UDP Listeners ........................... : {0}",
        udpStat.UdpListeners);
    Console.WriteLine("");
}

Comentários

Para localizar o número total de datagramas que não puderam ser entregues, adicione os valores retornados por essa propriedade e a IncomingDatagramsDiscarded propriedade.To find the total number of datagrams that could not be delivered, add the values that were returned by this property and the IncomingDatagramsDiscarded property.

Aplica-se a