Ping コンストラクター

定義

Ping クラスの新しいインスタンスを初期化します。

public:
 Ping();
public Ping ();
Public Sub New ()

次のコード例は、インスタンスの作成を Ping 示しています。 完全な例については、クラスの概要に関するページを Ping 参照してください。

Ping ^ pingSender = gcnew Ping;

// When the PingCompleted event is raised,
// the PingCompletedCallback method is called.
pingSender->PingCompleted += gcnew PingCompletedEventHandler( PingCompletedCallback );
Ping pingSender = new Ping ();

// When the PingCompleted event is raised,
// the PingCompletedCallback method is called.
pingSender.PingCompleted += new PingCompletedEventHandler (PingCompletedCallback);

適用対象