Click or drag to resize

MessengerSendInform Method

Sends INFORM message.

Namespace: Lextm.SharpSnmpLib.Messaging
Assembly: SharpSnmpLib (in SharpSnmpLib.dll) Version: 12.5.7-2+Branch.master.Sha.2a75ece2c9d55c4f731f356d1512c8a5d19fa096.2a75ece2c9d55c4f731f356d1512c8a5d19fa096
Syntax
public static void SendInform(
	int requestId,
	VersionCode version,
	IPEndPoint receiver,
	OctetString community,
	OctetString contextName,
	ObjectIdentifier enterprise,
	uint timestamp,
	IList<Variable> variables,
	int timeout,
	IPrivacyProvider privacy,
	ISnmpMessage report
)

Parameters

requestId  Int32
The request ID.
version  VersionCode
Protocol version.
receiver  IPEndPoint
Receiver.
community  OctetString
Community name (v2c) or user name (v3).
contextName  OctetString
Context name.
enterprise  ObjectIdentifier
Enterprise OID.
timestamp  UInt32
Timestamp.
variables  IListVariable
Variable bindings.
timeout  Int32
The time-out value, in milliseconds. The default value is 0, which indicates an infinite time-out period. Specifying -1 also indicates an infinite time-out period.
privacy  IPrivacyProvider
The privacy provider.
report  ISnmpMessage
The report.
Remarks
This method supports SNMP v2c and v3.
See Also