From 18ec61ce6fcb76d3705fa3a807088dcf7e714b17 Mon Sep 17 00:00:00 2001 From: Genevieve Warren Date: Mon, 4 May 2020 17:14:09 -0700 Subject: [PATCH] Fix acronym casing --- docs/framework/network-programming/using-udp-services.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/framework/network-programming/using-udp-services.md b/docs/framework/network-programming/using-udp-services.md index 2ca564d3fa2ff..a599100c2d672 100644 --- a/docs/framework/network-programming/using-udp-services.md +++ b/docs/framework/network-programming/using-udp-services.md @@ -18,12 +18,13 @@ helpviewer_keywords: - "application protocols, UDP" ms.assetid: d5c3477a-e798-454c-a890-738ba14c5707 --- -# Using UDP Services +# Use UDP services + The class communicates with network services using UDP. The properties and methods of the class abstract the details of creating a for requesting and receiving data using UDP. User Datagram Protocol (UDP) is a simple protocol that makes a best effort to deliver data to a remote host. However, because the UDP protocol is a connectionless protocol, UDP datagrams sent to the remote endpoint are not guaranteed to arrive, nor are they guaranteed to arrive in the same sequence in which they are sent. Applications that use UDP must be prepared to handle missing, duplicate, and out-of-sequence datagrams. -To send a datagram using UDP, you must know the network address of the network device hosting the service you need and the UDP port number that the service uses to communicate. The Internet Assigned Numbers Authority (Iana) defines port numbers for common services (see [Service Name and Transport Protocol Port Number Registry](https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtml)). Services not on the Iana list can have port numbers in the range 1,024 to 65,535. +To send a datagram using UDP, you must know the network address of the network device hosting the service you need and the UDP port number that the service uses to communicate. The Internet Assigned Numbers Authority (IANA) defines port numbers for common services (see [Service Name and Transport Protocol Port Number Registry](https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtml)). Services not on the IANA list can have port numbers in the range 1,024 to 65,535. Special network addresses are used to support UDP broadcast messages on IP-based networks. The following discussion uses the IP version 4 address family used on the Internet as an example.