|
SnmpSendTrapAsync(UInt32, Double) Method
|
Sends a floating-point based SNMP version 3 trap.
Namespace: GSF.Net.SnmpAssembly: GSF.Net (in GSF.Net.dll) Version: 2.4.248-beta
Syntaxpublic static Task SendTrapAsync(
uint[] oid,
double value
)
Public Shared Function SendTrapAsync (
oid As UInteger(),
value As Double
) As Task
public:
static Task^ SendTrapAsync(
array<unsigned int>^ oid,
double value
)
static member SendTrapAsync :
oid : uint32[] *
value : float -> Task
GSF.Net.Snmp.Snmp.SendTrapAsync = function(oid, value);
View SourceParameters
- oid UInt32
- Target OID.
- value Double
- Notification value.
Return Value
Task
Remarks
SNMP does not support floating point values via binary encoding, so value is encoded as a string.
See Also