IScalar Interface

Represents a scalar metadata object.

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

Syntax

'Declaration
Public Interface IScalar _
    Inherits IMetadataObject
'Usage
Dim instance As IScalar
public interface IScalar : IMetadataObject
public interface class IScalar : IMetadataObject
type IScalar =  
    interface
        interface IMetadataObject
    end
public interface IScalar extends IMetadataObject

The IScalar type exposes the following members.

Properties

  Name Description
Public property DataType Gets the scalar data type.
Public property Name Gets the name of the metadata object. (Inherited from IMetadataObject.)
Public property Nullable Gets a Boolean value that indicates whether the scalar object is nullable.
Public property ScalarType Gets the scalar type.

Top

Methods

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

Top