Authenticate outgoing message.

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

Syntax

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

Parameters

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

See Also