ThrottlingMode Enumeration

Retired Content

This content and the technology described is outdated and is no longer being maintained. For more information about Transient Fault Handling, see Transient Fault Handling.

Defines the possible throttling modes in SQL Azure.

Namespace: Microsoft.Practices.EnterpriseLibrary.WindowsAzure.TransientFaultHandling.SqlAzure
Assembly: Microsoft.Practices.EnterpriseLibrary.WindowsAzure.TransientFaultHandling (in Microsoft.Practices.EnterpriseLibrary.WindowsAzure.TransientFaultHandling.dll) Version: 5.0.1118.0 (5.0.1118.0)

Syntax

public enum ThrottlingMode
'Declaration
Public Enumeration ThrottlingMode
public enum class ThrottlingMode

Members

Member name Value Description
NoThrottling 0 Corresponds to "No Throttling" throttling mode whereby all SQL statements can be processed.
RejectUpdateInsert 1 Corresponds to "Reject Update / Insert" throttling mode whereby SQL statements such as INSERT, UPDATE, CREATE TABLE and CREATE INDEX are rejected.
RejectAllWrites 2 Corresponds to "Reject All Writes" throttling mode whereby SQL statements such as INSERT, UPDATE, DELETE, CREATE, DROP are rejected.
RejectAll 3 Corresponds to "Reject All" throttling mode whereby all SQL statements are rejected.
Unknown -1 Corresponds to an unknown throttling mode whereby throttling mode cannot be determined with certainty.

See Also

Microsoft.Practices.EnterpriseLibrary.WindowsAzure.TransientFaultHandling.SqlAzure Namespace