Compartir a través de


Interfaz IBuiltInFunction

Represents a built-in function or a system function that starts with two at signs (@@).

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

Sintaxis

'Declaración
Public Interface IBuiltInFunction _
    Inherits IScalarFunction, IFunction, IFunctionModuleBase, IScalar,  _
    IMetadataObject
'Uso
Dim instance As IBuiltInFunction
public interface IBuiltInFunction : IScalarFunction, 
    IFunction, IFunctionModuleBase, IScalar, IMetadataObject
public interface class IBuiltInFunction : IScalarFunction, 
    IFunction, IFunctionModuleBase, IScalar, IMetadataObject
type IBuiltInFunction =  
    interface
        interface IScalarFunction
        interface IFunction
        interface IFunctionModuleBase
        interface IScalar
        interface IMetadataObject
    end
public interface IBuiltInFunction extends IScalarFunction, IFunction, IFunctionModuleBase, IScalar, IMetadataObject

El tipo IBuiltInFunction expone los siguientes miembros.

Propiedades

  Nombre Descripción
Propiedad pública DataType Gets the scalar data type. (Se hereda de IScalar.)
Propiedad pública IsAggregateFunction Gets a value that indicates whether this is an aggregate function. (Se hereda de IScalarFunction.)
Propiedad pública IsDatePartFunction Gets a value that indicates whether the function is a date-and-time parts function (for example, DATEDIFF, DATEPART, and so on).
Propiedad pública IsGlobalVariable Gets a value that indicates whether this is a system function that starts with two at signs (@@) (for example, @@IDENTITY).
Propiedad pública IsVarArg Gets a value that indicates whether the number of arguments is variable.
Propiedad pública MaxNumberOfArgs Gets the maximum number of arguments that the function accepts.
Propiedad pública MinNumberOfArgs Gets the minimum number of arguments that the function accepts.
Propiedad pública Name Gets the name of the metadata object. (Se hereda de IMetadataObject.)
Propiedad pública Nullable Gets a Boolean value that indicates whether the scalar object is nullable. (Se hereda de IScalar.)
Propiedad pública Parameters Gets a collection that contains the parameters that the function or module accepts. (Se hereda de IFunctionModuleBase.)
Propiedad pública ScalarType Gets the scalar type. (Se hereda de IScalar.)

Arriba

Métodos

  Nombre Descripción
Método público Accept< (Of < <' (T> ) > > ) Accepts a visit from the specified IMetadataObjectVisitor<(Of <(<'T>)>)> object. (Se hereda de IMetadataObject.)

Arriba