Propriedade ImplementationType
Gets or sets the implementation type of the stored procedure.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (em Microsoft.SqlServer.Smo.dll)
Sintaxe
'Declaração
<SfcPropertyAttribute> _
Public Property ImplementationType As ImplementationType
Get
Set
'Uso
Dim instance As StoredProcedure
Dim value As ImplementationType
value = instance.ImplementationType
instance.ImplementationType = value
[SfcPropertyAttribute]
public ImplementationType ImplementationType { get; set; }
[SfcPropertyAttribute]
public:
property ImplementationType ImplementationType {
ImplementationType get ();
void set (ImplementationType value);
}
[<SfcPropertyAttribute>]
member ImplementationType : ImplementationType with get, set
function get ImplementationType () : ImplementationType
function set ImplementationType (value : ImplementationType)
Valor da propriedade
Tipo: Microsoft.SqlServer.Management.Smo. . :: . .ImplementationType
An ImplementationType object value that specifies the implementation type of the stored procedure.
Comentários
This property specifies whether the stored procedure is implemented with a SQL Server common language runtime (CLR) type or with Transact-SQL. If the stored procedure is implemented with a SQL CLR type then values are required for the ExecutionContextPrincipal property, the AssemblyName property, the ClassName property, and the MethodName property.
Consulte também