// // System.Data.Sql.TriggerAction // // Author: // Tim Coleman (tim@timcoleman.com) // // Copyright (C) Tim Coleman, 2003 // #if NET_1_2 namespace System.Data.Sql { public enum TriggerAction { AlterAppRole, AlterAssembly, AlterBinding, AlterFunction, AlterIndex, AlterLogin, AlterPartitionFunction, AlterPartitionScheme, AlterProcedure, AlterQueue, AlterRole, AlterRoute, AlterSchema, AlterService, AlterTable, AlterTrigger, AlterUser, AlterView, CreateAppRole, CreateAssembly, CreateBinding, CreateContract, CreateEventNotification, CreateFunction, CreateIndex, CreateLogin, CreateMsgType, CreatePartitionFunction, CreatePartitionScheme, CreateProcedure, CreateQueue, CreateRole, CreateRoute, CreateSchema, CreateSecexpr, CreateService, CreateSynonym, CreateTable, CreateTrigger, CreateType, CreateUser, CreateView, Delete, DenyObject, DropAppRole, DropAssembly, DropBinding, DropContract, DropEventNotification, DropFunction, DropIndex, DropLogin, DropMsgType, DropPartitionFunction, DropPartitionScheme, DropProcedure, DropQueue, DropRole, DropRoute, DropSchema, DropSecexpr, DropService, DropSynonym, DropTable, DropTrigger, DropType, DropUser, DropView, GrantObject, GrantStatement, Insert, Invalid, RevokeObject, RevokeStatement, Update } } #endif