OperationRetryControl.IsTransient Property

Definition

Gets or sets a value indicating whether the exception is represents a transient condition. The transient retriable exceptions are those where the communication channel from client to service still exists. Non transient retriable exceptions are those where we need to re-resolve the service endpoint before we retry.

public bool IsTransient { get; set; }
member this.IsTransient : bool with get, set
Public Property IsTransient As Boolean

Property Value

true indicates that this is a transient retriable exception. false indicates that this is a non transient retriable exception.

Applies to