Enum ThrottlingMode
Defines the possible throttling modes in SQL Azure.
Namespace: Umbraco.Core.Persistence.FaultHandling
Assembly: Umbraco.Core.dll
Syntax
public enum ThrottlingMode
Fields
Name | Description |
---|---|
NoThrottling | Corresponds to "No Throttling" throttling mode whereby all SQL statements can be processed. |
RejectAll | Corresponds to "Reject All" throttling mode whereby all SQL statements are rejected. |
RejectAllWrites | Corresponds to "Reject All Writes" throttling mode whereby SQL statements such as INSERT, UPDATE, DELETE, CREATE, DROP are rejected. |
RejectUpdateInsert | Corresponds to "Reject Update / Insert" throttling mode whereby SQL statements such as INSERT, UPDATE, CREATE TABLE and CREATE INDEX are rejected. |
Unknown | Corresponds to an unknown throttling mode whereby throttling mode cannot be determined with certainty. |