SqlContext.TriggerContext Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the trigger context used to provide the caller with information about what caused the trigger to fire, and a map of the columns that were updated.
public:
static property Microsoft::SqlServer::Server::SqlTriggerContext ^ TriggerContext { Microsoft::SqlServer::Server::SqlTriggerContext ^ get(); };
public static Microsoft.SqlServer.Server.SqlTriggerContext TriggerContext { get; }
static member TriggerContext : Microsoft.SqlServer.Server.SqlTriggerContext
Public Shared ReadOnly Property TriggerContext As SqlTriggerContext
Property Value
An instance of SqlTriggerContext if a trigger context is available, or null
if called outside of a trigger invocation.
Remarks
The SqlTriggerContext object can only be retrieved from within a common language runtime trigger.
If the TriggerContext property is accessed from outside of SQL Server, a NotSupportedException is thrown.
This property is read-only.