IotHubCommunicationException Class

Definition

This exception is thrown when an attempt to communicate with the IoT hub service fails due to transient network errors after exhausting all the retries based on the retry policy set on the client or due to operation timeouts.

[System.Serializable]
public sealed class IotHubCommunicationException : Microsoft.Azure.Devices.Client.Exceptions.IotHubException
[<System.Serializable>]
type IotHubCommunicationException = class
    inherit IotHubException
Public NotInheritable Class IotHubCommunicationException
Inherits IotHubException
Inheritance
IotHubCommunicationException
Attributes

Remarks

By default, the SDK indefinitely retries dropped connections, unless the retry policy is overridden. For more information on the SDK's retry policy and how to override it, see https://github.com/Azure/azure-iot-sdk-csharp/blob/main/iothub/device/devdoc/retrypolicy.md. When the exception is thrown due to operation timeouts, the inner exception will have OperationCanceledException. Retrying operations failed due to timeouts could resolve the error.

Constructors

IotHubCommunicationException()

Initializes a new instance of the class.

IotHubCommunicationException(String)

Initializes a new instance of the class with the message string set to the message parameter.

IotHubCommunicationException(String, Exception)

Initializes a new instance of the class with the message string set to the message parameter and a reference to the inner exception that is the cause of this exception.

Properties

IsTransient

Indicates if the error is transient and should be retried.

(Inherited from IotHubException)
TrackingId

The service returned tracking Id associated with this particular error.

(Inherited from IotHubException)

Methods

GetObjectData(SerializationInfo, StreamingContext)

Sets the SerializationInfo with information about the exception. Use this to set IsTransient and TrackingId to the serialized object data.

(Inherited from IotHubException)

Applies to