共用方式為


CloudToDeviceProperties Constructors

Definition

Overloads

CloudToDeviceProperties()

Initializes a new instance of the CloudToDeviceProperties class.

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

Initializes a new instance of the CloudToDeviceProperties class.

CloudToDeviceProperties()

Initializes a new instance of the CloudToDeviceProperties class.

public CloudToDeviceProperties ();
Public Sub New ()

Applies to

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

Initializes a new instance of the CloudToDeviceProperties class.

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

Parameters

maxDeliveryCount
Nullable<Int32>

The max delivery count for cloud-to-device messages in the device queue. See: https://docs.microsoft.com/azure/iot-hub/iot-hub-devguide-messaging#cloud-to-device-messages.

defaultTtlAsIso8601
Nullable<TimeSpan>

The default time to live for cloud-to-device messages in the device queue. See: https://docs.microsoft.com/azure/iot-hub/iot-hub-devguide-messaging#cloud-to-device-messages.

Applies to