FlowProperties.AutoAck Property

Solclient

FlowPropertiesAutoAck Property
version: 7.2.1.27

Note: This API is now obsolete.

When set to true, the API generates application level acknowledgments for Guaranteed messages, when the receive delegate returns, this is equivalent to specifying AutoAck for AckMode.

When set to false, client applications must explicitly acknowledge Guaranteed messages, if they do not want to receive them again when reconnecting.

Default: true

Namespace: SolaceSystems.Solclient.Messaging
Assembly: SolaceSystems.Solclient.Messaging (in SolaceSystems.Solclient.Messaging.dll) Version: 7.2.1.27 (7.2.1.27)
Syntax
[ObsoleteAttribute("Use AckMode instead", false)]
public bool AutoAck { get; set; }
<ObsoleteAttribute("Use AckMode instead", false)>
Public Property AutoAck As Boolean
	Get
	Set
public:
[ObsoleteAttribute(L"Use AckMode instead", false)]
property bool AutoAck {
	bool get ();
	void set (bool value);
}

Property Value

Type: Boolean
See Also