Message Constructors

Definition

Overloads

Message()

Default constructor with no body data

Message(Byte[])

Constructor which uses the input byte array as the body.

Message(Stream)

Constructor which uses the argument stream as the body stream.

Message()

Default constructor with no body data

public Message ();
Public Sub New ()

Applies to

Message(Byte[])

Constructor which uses the input byte array as the body.

public Message (byte[] byteArray);
new Microsoft.Azure.Devices.Client.Message : byte[] -> Microsoft.Azure.Devices.Client.Message
Public Sub New (byteArray As Byte())

Parameters

byteArray
Byte[]

A byte array which will be used to form the body stream.

Remarks

User should treat the input byte array as immutable when sending the message.

Applies to

Message(Stream)

Constructor which uses the argument stream as the body stream.

public Message (System.IO.Stream stream);
new Microsoft.Azure.Devices.Client.Message : System.IO.Stream -> Microsoft.Azure.Devices.Client.Message
Public Sub New (stream As Stream)

Parameters

stream
Stream

A stream which will be used as body stream.

Remarks

User is expected to own the disposing of the stream when using this constructor.

Applies to