Authenticate outgoing message.

Namespace:  SnmpSharpNet
Assembly:  SnmpSharpNet (in SnmpSharpNet.dll) Version: 0.6.0.0 (0.6.0.0)

Syntax

C#
void authenticateOutgoingMsg(
	byte[] userPassword,
	byte[] engineId,
	MutableByte wholeMessage,
	int authFieldOffset
)
Visual Basic (Declaration)
Sub authenticateOutgoingMsg ( _
	userPassword As Byte(), _
	engineId As Byte(), _
	wholeMessage As MutableByte, _
	authFieldOffset As Integer _
)
Visual C++
void authenticateOutgoingMsg(
	array<unsigned char>^ userPassword, 
	array<unsigned char>^ engineId, 
	MutableByte^ wholeMessage, 
	int authFieldOffset
)

Parameters

userPassword
Type: array< System..::.Byte >[]()[]
Authentication secret
engineId
Type: array< System..::.Byte >[]()[]
SNMP version 3 agent engine id
wholeMessage
Type: SnmpSharpNet..::.MutableByte
Message to authenticate
authFieldOffset
Type: System..::.Int32
Offset within the message to store authentication parameters values

See Also