| TranslationManagerStrDecoder Delegate |
Used when a message is expected from the communication layer.
Namespace: RW.Server.ComponentAssembly: RW.Server.Component (in RW.Server.Component.dll) Version: 6.3.0.0 (0.8.0.0)
Syntax public delegate string StrDecoder(
byte[] buffer
)
Public Delegate Function StrDecoder (
buffer As Byte()
) As String
public delegate String^ StrDecoder(
array<unsigned char>^ buffer
)
Parameters
- buffer
- Type: SystemByte
The incoming encoded bytes
Return Value
Type:
StringThe decoded string.
Remarks
The incoming message is in the buffer argument
and this delegate should return the received string.
See Also