Skip to content

Instantly share code, notes, and snippets.

@devlights
Created October 31, 2016 07:45
Show Gist options
  • Select an option

  • Save devlights/e865a1bd081fbec83e01287bd5a93971 to your computer and use it in GitHub Desktop.

Select an option

Save devlights/e865a1bd081fbec83e01287bd5a93971 to your computer and use it in GitHub Desktop.
UdpClientでブロードキャストする際のメモ
  • UdpClientの受信バッファサイズは、デフォルトで 8192バイト。
  • ReceiveBufferSizeプロパティに値を設定することで、変更出来る。
  • ブロードキャスト送信をするには、以下のようにしないといけない。
    • EnableBroadcastをTrueに
    • Connectメソッドで IPAddress.Broadcastを指定
  • ブロードキャスト受信をするには、コンストラクタでポート番号を指定する
    • 後は通常時と同じ。
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment