e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
36 lines
1.1 KiB
C#
36 lines
1.1 KiB
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="SqlNotificationInfo.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
// <owner current="true" primary="true">mithomas</owner>
|
|
// <owner current="true" primary="false">blained</owner>
|
|
// <owner current="false" primary="true">ramp</owner>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.Data.SqlClient {
|
|
public enum SqlNotificationInfo {
|
|
Truncate = 0,
|
|
Insert = 1,
|
|
Update = 2,
|
|
Delete = 3,
|
|
Drop = 4,
|
|
Alter = 5,
|
|
Restart = 6,
|
|
Error = 7,
|
|
Query = 8,
|
|
Invalid = 9,
|
|
Options = 10,
|
|
Isolation = 11,
|
|
Expired = 12,
|
|
Resource = 13,
|
|
PreviousFire = 14,
|
|
TemplateLimit = 15,
|
|
Merge = 16,
|
|
|
|
// use negative values for client-only-generated values
|
|
Unknown = -1,
|
|
AlreadyChanged = -2
|
|
}
|
|
}
|
|
|