Message.CloneWithBody(Byte[]) Method

Definition

Clones an existing Message instance and sets content body defined by byteArray on it.

public Microsoft.Azure.Devices.Client.Message CloneWithBody (in byte[] byteArray);
member this.CloneWithBody : Byte[] -> Microsoft.Azure.Devices.Client.Message
Public Function CloneWithBody (ByRef byteArray As Byte()) As Message

Parameters

byteArray
Byte[]

Message content to be set after clone.

Returns

A new instance of Message with body content defined by byteArray, and user/system properties of the cloned Message instance.

Remarks

The cloned message has the message MessageId as the original message. User should treat the input byte array as immutable when sending the message.

Applies to