System.ServiceModel
4.0.0.0
System.ServiceModel.Configuration.BindingElementExtensionElement
When this element is added to a custom binding, the resulting channel can support exactly-once delivery assurances.
Represents configuration setting for WS-Reliable Messaging.
Constructor
4.0.0.0
To be added.
Initializes a new instance of the class.
Property
4.0.0.0
System.ComponentModel.TypeConverter(typeof(System.ComponentModel.TimeSpanConverter))
System.Configuration.ConfigurationProperty("acknowledgementInterval", DefaultValue=Mono.Cecil.CustomAttributeArgument, Options=System.Configuration.ConfigurationPropertyOptions.None)
System.TimeSpan
To be added.
To be added.
Gets or sets the interval of time that a destination waits before sending an acknowledgment to the message source on reliable channels that are created by the factory.
Method
4.0.0.0
System.Void
To be added.
To be added.
Applies the content of a specified binding element to this binding configuration section.
Property
4.0.0.0
System.Type
To be added.
To be added.
Gets the type of this binding element.
Method
4.0.0.0
System.Void
To be added.
To be added.
Copies the content of the specified configuration section to this configuration section.
Method
4.0.0.0
System.ServiceModel.Channels.BindingElement
To be added.
To be added.
To be added.
Property
4.0.0.0
System.Configuration.ConfigurationProperty("flowControlEnabled", DefaultValue=Mono.Cecil.CustomAttributeArgument, Options=System.Configuration.ConfigurationPropertyOptions.None)
System.Boolean
To be added.
To be added.
Gets or sets a value that indicates whether advanced flow control, a Microsoft-specific implementation of flow control for WS-Reliable messaging, is activated.
Property
4.0.0.0
System.ComponentModel.TypeConverter(typeof(System.ComponentModel.TimeSpanConverter))
System.Configuration.ConfigurationProperty("inactivityTimeout", DefaultValue=Mono.Cecil.CustomAttributeArgument, Options=System.Configuration.ConfigurationPropertyOptions.None)
System.TimeSpan
To be added.
Activity on a channel is defined as receiving an application or infrastructure message. This property controls the maximum amount of time to keep an inactive session alive. If there is a longer time with no activity, the session is aborted by the infrastructure and the channel faults.
Gets or sets a value that specifies the maximum duration the channel allows the other communicating party not to send any messages before faulting the channel.
Method
4.0.0.0
System.Void
To be added.
To be added.
To be added.
Property
4.0.0.0
System.Configuration.ConfigurationProperty("maxPendingChannels", DefaultValue=Mono.Cecil.CustomAttributeArgument, Options=System.Configuration.ConfigurationPropertyOptions.None)
System.Configuration.IntegerValidator(ExcludeRange=false, MaxValue=16384, MinValue=1)
System.Int32
To be added.
This value should be an integer between 1 and 16384 inclusively.
Channels are pending when they are waiting to be accepted. Once that limit is reached, no channels are created. Rather, they are put in pending mode until this number goes down (by accepting pending channels). This limit is for each factory.
When the threshold is reached and a remote application tries to establish a new reliable session, the request is denied and the open operation that prompted this faults. This limit does not apply to the number of pending outgoing channels.
Gets or sets the maximum number of channels that can wait to be accepted on the listener.
Property
4.0.0.0
System.Configuration.ConfigurationProperty("maxRetryCount", DefaultValue=Mono.Cecil.CustomAttributeArgument, Options=System.Configuration.ConfigurationPropertyOptions.None)
System.Configuration.IntegerValidator(ExcludeRange=false, MaxValue=2147483647, MinValue=1)
System.Int32
To be added.
This value should be an integer greater than zero. If an acknowledgment is not received after the last retransmission, the channel faults.
A message is considered to be transferred if its delivery at the recipient is acknowledged by the recipient.
If an acknowledgment is not received within a certain amount of time for a message that has been transmitted, the infrastructure automatically retransmits the message. The infrastructure tries to resend the message for, at most, the number of times specified by this property. If an acknowledgment is not received after the last retransmission, the channel faults.
The infrastructure uses an exponential back-off algorithm to determine when to retransmit, based on a computed average round-trip time. The time initially starts at 1 second before retransmission and doubling the delay with every attempt, which results in approximately 8.5 minutes passing between the first transmission attempt and the last retransmission attempt. The time for the first retransmission attempt is adjusted according to the calculated round-trip time and the resulting stretch of time that those attempts take varies accordingly. This allows the retransmission time to dynamically adapt to varying network conditions.
Gets or sets the maximum number of times a reliable channel attempts to retransmit a message it has not received an acknowledgment for, by calling Send on its underlying channel.
Property
4.0.0.0
System.Configuration.ConfigurationProperty("maxTransferWindowSize", DefaultValue=Mono.Cecil.CustomAttributeArgument, Options=System.Configuration.ConfigurationPropertyOptions.None)
System.Configuration.IntegerValidator(ExcludeRange=false, MaxValue=4096, MinValue=1)
System.Int32
To be added.
On the client, this property defines the maximum size of the buffer used by a reliable channel to hold messages not yet acknowledged by the receiver. The unit of the quota is a message. If the buffer is full, further Send operations are blocked.
On the receiver, this property defines the maximum size of the buffer used by the channel to store incoming messages not yet dispatched to the application. If the buffer is full, further messages are silently dropped by the receiver and require retransmission by the client.
Gets or sets the maximum size of the buffer.
Property
4.0.0.0
System.Configuration.ConfigurationProperty("ordered", DefaultValue=Mono.Cecil.CustomAttributeArgument, Options=System.Configuration.ConfigurationPropertyOptions.None)
System.Boolean
To be added.
To be added.
Gets or sets a value that specifies whether messages are guaranteed to arrive in the order they were sent.
Property
4.0.0.0
System.Configuration.ConfigurationPropertyCollection
To be added.
To be added.
To be added.
Property
4.0.0.0
System.ComponentModel.TypeConverter(typeof(System.ServiceModel.Configuration.ReliableMessagingVersionConverter))
System.Configuration.ConfigurationProperty("reliableMessagingVersion", DefaultValue=Mono.Cecil.CustomAttributeArgument)
System.ServiceModel.ReliableMessagingVersion
To be added.
There are currently two versions of the WS-ReliableMessaging protocol supported by indigo1: WS-ReliableMessaging1.1 and WS-ReliableMessagingFebruary2005. The default version is WS-ReliableMessagingFebruary2005.
Gets or sets the version of WS-ReliableMessaging specified by the configuration element.