IExecutionContext Interface
Represents a SQL Server user-defined module execution context.
Namespace: Microsoft.SqlServer.Management.SqlParser.Metadata
Assembly: Microsoft.SqlServer.Management.SqlParser (in Microsoft.SqlServer.Management.SqlParser.dll)
Syntax
'Declaration
Public Interface IExecutionContext _
Inherits IMetadataObject
'Usage
Dim instance As IExecutionContext
public interface IExecutionContext : IMetadataObject
public interface class IExecutionContext : IMetadataObject
type IExecutionContext =
interface
interface IMetadataObject
end
public interface IExecutionContext extends IMetadataObject
The IExecutionContext type exposes the following members.
Properties
Name | Description | |
---|---|---|
ContextType | Gets an ExecutionContextType value that indicates the execution context for the module. | |
Login | Gets the SQL Server login that can be used in an EXECUTE AS clause. | |
Name | Gets the name of the metadata object. (Inherited from IMetadataObject.) | |
User | Gets the user that can be used in an EXECUTE AS clause. |
Top
Methods
Name | Description | |
---|---|---|
Accept<T> | Accepts a visit from the specified IMetadataObjectVisitor<T> object. (Inherited from IMetadataObject.) |
Top