SnmpVarBindList structure (snmp.h)

[SNMP is available for use in the operating systems specified in the Requirements section. It may be altered or unavailable in subsequent versions. Instead, use Windows Remote Management, which is the Microsoft implementation of WS-Man.]

The SnmpVarBindList structure represents an SNMP variable bindings list. This structure is used by multiple SNMP functions. This structure is not used by the WinSNMP API functions.

Syntax

typedef struct {
  SnmpVarBind *list;
  UINT        len;
} SnmpVarBindList;

Members

list

A pointer that references an array to access individual variable bindings.

len

Contains the number of variable bindings in the list.

Requirements

Requirement Value
Minimum supported client Windows 2000 Professional [desktop apps only]
Minimum supported server Windows 2000 Server [desktop apps only]
Header snmp.h

See also

SNMP Structures

Simple Network Management Protocol (SNMP) Overview

SnmpVarBind