MessagingEndpointProperties Constructors

Definition

Overloads

MessagingEndpointProperties()

Initializes a new instance of the MessagingEndpointProperties class.

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

Initializes a new instance of the MessagingEndpointProperties class.

MessagingEndpointProperties()

Initializes a new instance of the MessagingEndpointProperties class.

public MessagingEndpointProperties ();
Public Sub New ()

Applies to

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

Initializes a new instance of the MessagingEndpointProperties class.

public MessagingEndpointProperties (TimeSpan? lockDurationAsIso8601 = default, TimeSpan? ttlAsIso8601 = default, int? maxDeliveryCount = default);
new Microsoft.Azure.Management.IotHub.Models.MessagingEndpointProperties : Nullable<TimeSpan> * Nullable<TimeSpan> * Nullable<int> -> Microsoft.Azure.Management.IotHub.Models.MessagingEndpointProperties
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

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-file-upload.

maxDeliveryCount
Nullable<Int32>

The number of times the IoT hub attempts to deliver a message. See: https://docs.microsoft.com/azure/iot-hub/iot-hub-devguide-file-upload.

Applies to