MsmqBindingElementBase.RetryCycleDelay Propriedade
Definição
Obtém ou define um valor que especifica quanto tempo se deve esperar antes de tentar um novo ciclo de novas tentativas ao tentar entregar uma mensagem que não pôde ser entregue.Gets or sets a value that specifies how long to wait before attempting another retry cycle when attempting to deliver a message that could not be delivered.
public:
property TimeSpan RetryCycleDelay { TimeSpan get(); void set(TimeSpan value); };
[System.ComponentModel.TypeConverter(typeof(System.ServiceModel.TimeSpanOrInfiniteConverter))]
[System.Configuration.ConfigurationProperty("retryCycleDelay", DefaultValue=Mono.Cecil.CustomAttributeArgument)]
public TimeSpan RetryCycleDelay { get; set; }
[System.Configuration.ConfigurationProperty("retryCycleDelay", DefaultValue=Mono.Cecil.CustomAttributeArgument)]
[System.ComponentModel.TypeConverter(typeof(System.Runtime.TimeSpanOrInfiniteConverter))]
public TimeSpan RetryCycleDelay { get; set; }
[System.Configuration.ConfigurationProperty("retryCycleDelay", DefaultValue=Mono.Cecil.CustomAttributeArgument)]
[System.ComponentModel.TypeConverter(typeof(System.ServiceModel.Configuration.TimeSpanOrInfiniteConverter))]
public TimeSpan RetryCycleDelay { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.ServiceModel.TimeSpanOrInfiniteConverter))>]
[<System.Configuration.ConfigurationProperty("retryCycleDelay", DefaultValue=Mono.Cecil.CustomAttributeArgument)>]
member this.RetryCycleDelay : TimeSpan with get, set
[<System.Configuration.ConfigurationProperty("retryCycleDelay", DefaultValue=Mono.Cecil.CustomAttributeArgument)>]
[<System.ComponentModel.TypeConverter(typeof(System.Runtime.TimeSpanOrInfiniteConverter))>]
member this.RetryCycleDelay : TimeSpan with get, set
[<System.Configuration.ConfigurationProperty("retryCycleDelay", DefaultValue=Mono.Cecil.CustomAttributeArgument)>]
[<System.ComponentModel.TypeConverter(typeof(System.ServiceModel.Configuration.TimeSpanOrInfiniteConverter))>]
member this.RetryCycleDelay : TimeSpan with get, set
Public Property RetryCycleDelay As TimeSpan
Valor da propriedade
O TimeSpan que especifica o intervalo de tempo de espera antes do início do próximo ciclo de tentativas de entrega para o aplicativo de recebimento.The TimeSpan that specifies the interval of time to wait before starting the next cycle of delivery attempts to the receiving application. O valor padrão é 30 (minutos).The default value is 30 (minutes).
- Atributos
Comentários
Um único ciclo de repetição faz tentativas repetidas de entregar uma mensagem ao aplicativo de recebimento (especificado pela MaxRetryCycles Propriedade).A single retry cycle makes repeated attempts to deliver a message to the receiving application (specified by the MaxRetryCycles property). Se todas as tentativas falharem, a mensagem será colocada de volta na fila de repetição.If all attempts fail, the message is placed back in the retry queue. Essa propriedade especifica por quanto tempo a mensagem permanece na fila de repetição antes de ser transferida para a fila do aplicativo para outro ciclo de repetição.This property specifies how long the message remains in the retry queue before it is transferred to the application queue for another retry cycle. Essa propriedade está disponível a partir do Windows Vista ou sistemas operacionais posteriores.This property is available starting with the Windows Vista or later operating systems.