Compartir a través de


UserDefinedFunction.ImplementationType Propiedad

Gets or sets the implementation type of the user-defined function.

Espacio de nombres:  Microsoft.SqlServer.Management.Smo
Ensamblado:  Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)

Sintaxis

'Declaración
<SfcPropertyAttribute(SfcPropertyFlags.None Or SfcPropertyFlags.Standalone Or SfcPropertyFlags.SqlAzureDatabase Or SfcPropertyFlags.Design,  _
    "TransactSql")> _
Public Property ImplementationType As ImplementationType 
    Get 
    Set
'Uso
Dim instance As UserDefinedFunction 
Dim value As ImplementationType 

value = instance.ImplementationType

instance.ImplementationType = value
[SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Standalone|SfcPropertyFlags.SqlAzureDatabase|SfcPropertyFlags.Design, 
    "TransactSql")]
public ImplementationType ImplementationType { get; set; }
[SfcPropertyAttribute(SfcPropertyFlags::None|SfcPropertyFlags::Standalone|SfcPropertyFlags::SqlAzureDatabase|SfcPropertyFlags::Design, 
    L"TransactSql")]
public:
property ImplementationType ImplementationType {
    ImplementationType get ();
    void set (ImplementationType value);
}
[<SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Standalone|SfcPropertyFlags.SqlAzureDatabase|SfcPropertyFlags.Design, 
    "TransactSql")>]
member ImplementationType : ImplementationType with get, set
function get ImplementationType () : ImplementationType 
function set ImplementationType (value : ImplementationType)

Valor de la propiedad

Tipo: Microsoft.SqlServer.Management.Smo.ImplementationType
An ImplementationType object value that specifies the implementation type of the user-defined function.

Comentarios

This property specifies whether the user-defined function is implemented with an SQL Server CLR type or with Transact-SQL. If the user-defined function is implemented with an SQL Server CLR type then values are required for the ExecutionContextPrincipal property, the AssemblyName property, the ClassName property, and the MethodName property.

Ejemplos

Establecer propiedades

Vea también

Referencia

UserDefinedFunction Clase

Espacio de nombres Microsoft.SqlServer.Management.Smo

Otros recursos

Funciones definidas por el usuario (motor de base de datos)

CREATE FUNCTION (Transact-SQL)