Windows Media Services SDK banner art
PreviousNext

Address.Type Property

Returns the Internet socket type of the Address object. The only type supported is type 4.

Syntax

NSChannelMgr.Address.Type

Example

NSChannelMgr.Connect "LocalHost"
Dim Hosts
Set Hosts = NSChannelMgr.HostAddresses
' Write a list of addresses and properties
For i = 0 to Hosts.Count - 1
   str = "<B>Host #" & i & "</B><BR>"
   str = str + "Type: " & Hosts.Item(i).Type & "<BR>"
   str = str + "Port: " & Hosts.Item(i).Port & "<BR>"
   str = str + "Address: " & Hosts.Item(i).Address & "<BR><BR>"
Document.Write str
Next i

See Also

Address.Port, Address.Address, Address Objects, HostAddresses Collection Object

PreviousNext


© 1996-1999 Microsoft Corporation. All rights reserved.