Constructor. Initialize individual flag values.

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

Syntax

C#
public MsgFlags(
	bool authentication,
	bool privacy,
	bool reportable
)
Visual Basic (Declaration)
Public Sub New ( _
	authentication As Boolean, _
	privacy As Boolean, _
	reportable As Boolean _
)
Visual C++
public:
MsgFlags(
	bool authentication, 
	bool privacy, 
	bool reportable
)

Parameters

authentication
Type: System..::.Boolean
true if authentication is used, otherwise false
privacy
Type: System..::.Boolean
true if privacy protection is used, otherwise false
reportable
Type: System..::.Boolean
true if report is expected, otherwise false

See Also