AmqpUtilitiesMessagePreview Method |
Returns the first x characters of the payload of an AMQP message, assuming UTF8 encoding
Namespace: CFX.TransportAssembly: CFX (in CFX.dll) Version: 2.1.1+880255d2f7380f340f56b243a51d99f2136bdae3
Syntaxpublic static string MessagePreview(
Message message,
int count = 200
)
Public Shared Function MessagePreview (
message As Message,
Optional count As Integer = 200
) As String
Parameters
- message Message
- The AMQP message to decode
- count Int32 (Optional)
- The number of characters to return. Defaults to 200
Return Value
StringA string containing the first x characters of the AMQP message payload
See Also