DlmsFrameParse_SetResponse(ByteBuffer, Int32, Byte, DlmsTypeDataAccessResult, UInt32) Method

Parses DLMS SET response and returns result codes. Parsing begins at position index in rawData.

Definition

Namespace: OddPrg.Protocols.DLMS
Assembly: OddPrg.Frames.Dlms (in OddPrg.Frames.Dlms.dll) Version: 2.0.0.24 (2.0.0.24)
C#
public static void Parse_SetResponse(
	ByteBuffer rawData,
	ref int index,
	out byte invokeIdAndPriority,
	out DlmsTypeDataAccessResult[] results,
	out uint blockNumber
)

Parameters

rawData  ByteBuffer
Response raw data to parse.
index  Int32
invokeIdAndPriority  Byte
It can be parsed with InvokeIdAndPriority.Parse method.
results  DlmsTypeDataAccessResult
Returned data access results.
blockNumber  UInt32
In the case of returning more SET responses it returns received block number. Else this parameter has no meaning and returns zero.

Remarks

Abstract syntax of Set-Responses in in GB page 207.

See Also