Static
decodeThe Base64 encoded string to be decoded.
The decoded message object.
Decodes a Base64 string back into a message.
This static method takes a Base64 encoded string and decodes it back into a message of type TMessage<T>
.
It first decodes the Base64 string into a JSON string, and then parses this JSON string back into a message object.
Static
encodeThe Base64 encoded string representation of the message.
Encodes a message into a Base64 string.
This static method takes a message of type TMessage<T>
and converts it into a Base64 encoded string.
It first stringifies the message into JSON, and then encodes this JSON string into Base64.
Generated using TypeDoc
Description
Helper class for Base64 encoding and decoding of messages.
This class provides static methods to encode and decode messages using Base64 encoding. It is designed to work with
TMessage
type, allowing for serialization and deserialization of messages.