// iscsimgt.h
typedef struct _MSiSCSI_PortalInfoClass {
ULONG PortalInfoCount;
ISCSI_PortalInfo PortalInformation[1];
} MSiSCSI_PortalInfoClass, *PMSiSCSI_PortalInfoClass;
View the official Windows Driver Kit DDI referenceNo description available.
The MSiSCSI_PortalInfoClass structure contains information about a collection of iSCSI portals.
PortalInfoCountThe number of portals that the initiator discovered and for which portal information is available.
PortalInformationA variable length array of ISCSI_PortalInfo structures. The number of elements in the array is specified by the PortalInfoCount field.
We recommend that you implement this class.
MSiSCSI_PortalInfoClass WMI Class