CimPort.Allow_Unsolicited (read-only property)

Indicates that the protocol used by the port supports unsolicited updates.
Syntax: Boolean = object.Allow_Unsolicited
Description: The Allow_Unsolicited property indicates that the protocol used by the port supports unsolicited updates.



Example:

Dim project As CimProject
Dim portList As CimPortList
Set project = CreateObject("CimProject")
project.OpenLocalProject "d:\classes\classes.gef"
Set portList = project.Ports

Dim port as CimPort
Set port = portList.Item("MASTER_TCPIP1)
MsgBox "Allow_Unsolicited = " & port.Allow_Unsolicited