| MvEndPointMsgEncoder Delegate |
Used to cipher and compress messages exchanged between a
component and a server.
Namespace: RW.Server.ComponentAssembly: RW.Server.Component (in RW.Server.Component.dll) Version: 6.3.0.0 (0.8.0.0)
Syntax public delegate byte[] MsgEncoder(
byte[] bytes
)
Public Delegate Function MsgEncoder (
bytes As Byte()
) As Byte()
public delegate array<unsigned char>^ MsgEncoder(
array<unsigned char>^ bytes
)
Parameters
- bytes
- Type: SystemByte
Return Value
Type:
ByteRemarks
To assign a MvEndPointMsgEncoder to a given component, you
must assign the MvEndPointMsgEncoder to the component using
the SetIOAdapters(MvEndPointMsgEncoder, MvEndPointMsgDecoder)
member function. However, it is your responsibility to set the
corresponding encoder on the server side.
See Also