UdpClient.Send メソッド
リモート ホストに UDP データグラムを送信します。
オーバーロードの一覧
リモート ホストに UDP データグラムを送信します。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Function Send(Byte(), Integer) As Integer
[JScript] public function Send(Byte[], int) : int;
指定したリモート エンドポイントにあるホストに UDP データグラムを送信します。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Function Send(Byte(), Integer, IPEndPoint) As Integer
[C++] public: int Send(unsigned char __gc[], int, IPEndPoint*);
[JScript] public function Send(Byte[], int, IPEndPoint) : int;
指定されたリモート ホストの指定されたポートに UDP データグラムを送信します。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Function Send(Byte(), Integer, String, Integer) As Integer
[C++] public: int Send(unsigned char __gc[], int, String*, int);
[JScript] public function Send(Byte[], int, String, int) : int;
使用例
[Visual Basic, C#, C++] Send メソッドの例を次に示します。この例ではホスト名とポート番号を使用してターゲット ホストを識別しています。
[Visual Basic, C#, C++] メモ ここでは、Send のオーバーロード形式のうちの 1 つだけについて、使用例を示します。その他の例については、各オーバーロード形式のトピックを参照してください。
Dim udpClient As New UdpClient()
Dim sendBytes As [Byte]() = Encoding.ASCII.GetBytes("Is anybody there")
Try
udpClient.Send(sendBytes, sendBytes.Length, "www.contoso.com", 11000)
Catch e As Exception
Console.WriteLine(e.ToString())
End Try
[C#]
UdpClient udpClient = new UdpClient();
Byte[] sendBytes = Encoding.ASCII.GetBytes("Is anybody there");
try{
udpClient.Send(sendBytes, sendBytes.Length, "www.contoso.com", 11000);
}
catch ( Exception e ){
Console.WriteLine(e.ToString());
}
[C++]
UdpClient* udpClient = new UdpClient();
Byte sendBytes[] = Encoding::ASCII->GetBytes(S"Is anybody there");
try{
udpClient->Send(sendBytes, sendBytes->Length, S"www.contoso.com", 11000);
}
catch ( Exception* e ){
Console::WriteLine(e->ToString());
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。