PingReply.Status Propriedade

Definição

Obtém o status de uma tentativa de enviar uma solicitação de eco do protocolo ICMP e receber a mensagem de resposta de eco ICMP correspondente.

public System.Net.NetworkInformation.IPStatus Status { get; }

Valor da propriedade

Um valor IPStatus que indica o resultado da solicitação.

Exemplos

O exemplo de código a seguir demonstra o uso Ping da classe para enviar uma solicitação de eco ICMP de forma síncrona e exibir a resposta.

using System;
using System.Net;
using System.Net.NetworkInformation;
using System.Text;

namespace Examples.System.Net.NetworkInformation.PingTest
{
    public class PingExample
    {
        // args[0] can be an IPaddress or host name.
        public static void Main (string[] args)
        {
            Ping pingSender = new Ping ();
            PingOptions options = new PingOptions ();

            // Use the default Ttl value which is 128,
            // but change the fragmentation behavior.
            options.DontFragment = true;

            // Create a buffer of 32 bytes of data to be transmitted.
            string data = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa";
            byte[] buffer = Encoding.ASCII.GetBytes (data);
            int timeout = 120;
            PingReply reply = pingSender.Send (args[0], timeout, buffer, options);
            if (reply.Status == IPStatus.Success)
            {
                Console.WriteLine ("Address: {0}", reply.Address.ToString ());
                Console.WriteLine ("RoundTrip time: {0}", reply.RoundtripTime);
                Console.WriteLine ("Time to live: {0}", reply.Options.Ttl);
                Console.WriteLine ("Don't fragment: {0}", reply.Options.DontFragment);
                Console.WriteLine ("Buffer size: {0}", reply.Buffer.Length);
            }
        }
    }
}

Comentários

Se o valor de Status não for , você não deverá usar os valores retornados pelas RoundtripTimepropriedades ou OptionsBuffer .Success As RoundtripTime propriedades e Buffer retornarão zero e a Options propriedade retornará null.

Aplica-se a