IMutableScalar Interface

Represents a mutable scalar metadata object.

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

Syntax

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

The IMutableScalar type exposes the following members.

Properties

  Name Description
Public property DataType Gets or sets the scalar data type.
Public property DataType Gets the scalar data type. (Inherited from IScalar.)
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.
Public property Nullable Gets a Boolean value that indicates whether the scalar object is nullable. (Inherited from IScalar.)
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