.Net IPAddress IPv4

Mam następujący kod:

Dim ipAdd As IPAddress = Dns.GetHostEntry(strHostname).AddressList(0)
Dim strIP As String = ipAdd.ToString()

Kiedy konwertuję na String zamiast adresu IPv4 jak 192.168.1.0 lub podobnego, otrzymuję wersję IPv6: fd80 :: 5dbe: 5d89: e51b: adres d313.

Czy istnieje sposób na zwrócenie adresu IPv4 z typu adresu IP?

Dzięki

questionAnswers(3)

yourAnswerToTheQuestion