FeedbackProperties Constructors

Definition

Overloads

FeedbackProperties()

Initializes a new instance of the FeedbackProperties class.

FeedbackProperties(Nullable<TimeSpan>, Nullable<TimeSpan>, Nullable<Int32>)

Initializes a new instance of the FeedbackProperties class.

FeedbackProperties()

Initializes a new instance of the FeedbackProperties class.

public FeedbackProperties ();
Public Sub New ()

Applies to

FeedbackProperties(Nullable<TimeSpan>, Nullable<TimeSpan>, Nullable<Int32>)

Initializes a new instance of the FeedbackProperties class.

public FeedbackProperties (TimeSpan? lockDurationAsIso8601 = default, TimeSpan? ttlAsIso8601 = default, int? maxDeliveryCount = default);
new Microsoft.Azure.Management.IotHub.Models.FeedbackProperties : Nullable<TimeSpan> * Nullable<TimeSpan> * Nullable<int> -> Microsoft.Azure.Management.IotHub.Models.FeedbackProperties
Public Sub New (Optional lockDurationAsIso8601 As Nullable(Of TimeSpan) = Nothing, Optional ttlAsIso8601 As Nullable(Of TimeSpan) = Nothing, Optional maxDeliveryCount As Nullable(Of Integer) = Nothing)

Parameters

lockDurationAsIso8601
Nullable<TimeSpan>

The lock duration for the feedback queue. See: https://docs.microsoft.com/azure/iot-hub/iot-hub-devguide-messaging#cloud-to-device-messages.

ttlAsIso8601
Nullable<TimeSpan>

The period of time for which a message is available to consume before it is expired by the IoT hub. See: https://docs.microsoft.com/azure/iot-hub/iot-hub-devguide-messaging#cloud-to-device-messages.

maxDeliveryCount
Nullable<Int32>

The number of times the IoT hub attempts to deliver a message on the feedback queue. See: https://docs.microsoft.com/azure/iot-hub/iot-hub-devguide-messaging#cloud-to-device-messages.

Applies to