MessagingEndpointProperties 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
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
The lock duration. See: https://docs.microsoft.com/azure/iot-hub/iot-hub-devguide-file-upload.
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.
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
Azure SDK for .NET