Message.CloneWithBody(Byte[]) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.