IMutableScalarFunction Interface

Represents a mutable SQL Server scalar function.

Namespace:  Microsoft.SqlServer.Management.SqlParser.Metadata
Assembly:  Microsoft.SqlServer.Management.SqlParser (in Microsoft.SqlServer.Management.SqlParser.dll)

Syntax

'Declaration
Public Interface IMutableScalarFunction _
    Inherits IScalarFunction, IMutableFunction, IFunction, IMutableFunctionModuleBase,  _
    IFunctionModuleBase, IMutableScalar, IScalar, IMutableMetadataObject, IMetadataObject
'Usage
Dim instance As IMutableScalarFunction
public interface IMutableScalarFunction : IScalarFunction, 
    IMutableFunction, IFunction, IMutableFunctionModuleBase, IFunctionModuleBase, IMutableScalar, 
    IScalar, IMutableMetadataObject, IMetadataObject
public interface class IMutableScalarFunction : IScalarFunction, 
    IMutableFunction, IFunction, IMutableFunctionModuleBase, IFunctionModuleBase, IMutableScalar, 
    IScalar, IMutableMetadataObject, IMetadataObject
type IMutableScalarFunction =  
    interface
        interface IScalarFunction
        interface IMutableFunction
        interface IFunction
        interface IMutableFunctionModuleBase
        interface IFunctionModuleBase
        interface IMutableScalar
        interface IScalar
        interface IMutableMetadataObject
        interface IMetadataObject
    end
public interface IMutableScalarFunction extends IScalarFunction, IMutableFunction, IFunction, IMutableFunctionModuleBase, IFunctionModuleBase, IMutableScalar, IScalar, IMutableMetadataObject, IMetadataObject

The IMutableScalarFunction type exposes the following members.

Properties

  Name Description
Public property DataType Gets or sets the scalar data type. (Inherited from IMutableScalar.)
Public property DataType Gets the scalar data type. (Inherited from IScalar.)
Public property IsAggregateFunction Gets a value that indicates whether this is an aggregate function. (Inherited from IScalarFunction.)
Public property Name Gets the name of the metadata object. (Inherited from IMetadataObject.)
Public property Nullable A value that specifies whether an object is nullable. (Inherited from IMutableScalar.)
Public property Nullable Gets a Boolean value that indicates whether the scalar object is nullable. (Inherited from IScalar.)
Public property Parameters Gets a collection that contains the parameters that the function or module accepts. (Inherited from IFunctionModuleBase.)
Public property Parameters Gets a collection that contains the parameters that the function or module accepts. (Inherited from IMutableFunctionModuleBase.)
Public property ScalarType Gets the scalar type. (Inherited from IScalar.)

Top

Methods

  Name Description
Public method Accept<T> Accepts a visit from the specified IMetadataObjectVisitor<T> object. (Inherited from IMetadataObject.)

Top