FeedbackProperties Constructors
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.
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
The lock duration for the feedback queue. See: https://docs.microsoft.com/azure/iot-hub/iot-hub-devguide-messaging#cloud-to-device-messages.
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.
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
Azure SDK for .NET