Click or drag to resize

MessengerBulkWalkAsync(VersionCode, IPEndPoint, OctetString, OctetString, ObjectIdentifier, IListVariable, Int32, WalkMode, IPrivacyProvider, ISnmpMessage) Method

Walks (based on GET BULK).

Namespace: GSF.Net.Snmp.Messaging
Assembly: GSF.Net (in GSF.Net.dll) Version: 2.4.181-beta
Syntax
public static Task<int> BulkWalkAsync(
	VersionCode version,
	IPEndPoint endpoint,
	OctetString community,
	OctetString contextName,
	ObjectIdentifier table,
	IList<Variable> list,
	int maxRepetitions,
	WalkMode mode,
	IPrivacyProvider privacy,
	ISnmpMessage report
)
View Source

Parameters

version  VersionCode
Protocol version.
endpoint  IPEndPoint
Endpoint.
community  OctetString
Community name (v2c) or user name (v3).
contextName  OctetString
Context name.
table  ObjectIdentifier
OID.
list  IListVariable
A list to hold the results.
maxRepetitions  Int32
The max repetitions.
mode  WalkMode
Walk mode.
privacy  IPrivacyProvider
The privacy provider.
report  ISnmpMessage
The report.

Return Value

TaskInt32
Returns row count if the OID is a table. Otherwise this value is meaningless.
Remarks
This method only supports SNMP v2c and v3.
See Also