SqlUserInteractionServices.GetTypeSpecifierName Method

Gets the name of the specified type specifier.

Namespace:  Microsoft.Data.Schema.Sql
Assembly:  Microsoft.Data.Schema.Sql (in Microsoft.Data.Schema.Sql.dll)

Syntax

'Declaration
Protected Overridable Function GetTypeSpecifierName ( _
    typeSpecifier As ISqlTypeSpecifier, _
    escape As Boolean, _
    fullName As Boolean, _
    includeType As Boolean _
) As String
protected virtual string GetTypeSpecifierName(
    ISqlTypeSpecifier typeSpecifier,
    bool escape,
    bool fullName,
    bool includeType
)
protected:
virtual String^ GetTypeSpecifierName(
    ISqlTypeSpecifier^ typeSpecifier, 
    bool escape, 
    bool fullName, 
    bool includeType
)
abstract GetTypeSpecifierName : 
        typeSpecifier:ISqlTypeSpecifier * 
        escape:bool * 
        fullName:bool * 
        includeType:bool -> string 
override GetTypeSpecifierName : 
        typeSpecifier:ISqlTypeSpecifier * 
        escape:bool * 
        fullName:bool * 
        includeType:bool -> string 
protected function GetTypeSpecifierName(
    typeSpecifier : ISqlTypeSpecifier, 
    escape : boolean, 
    fullName : boolean, 
    includeType : boolean
) : String

Parameters

  • escape
    Type: System.Boolean
    A value that indicates whether the name should be escaped (by default, by using brackets). This is ignored in this base class, but can be used in derived classes.
  • fullName
    Type: System.Boolean
    A value that indicates whether the full name is returned. This is ignored in this base class, but can be used in derived classes.
  • includeType
    Type: System.Boolean
    A value that indicates whether the type should be returned as part of the name. This is ignored in this base class, but can be used in derived classes.

Return Value

Type: System.String

.NET Framework Security

See Also

Reference

SqlUserInteractionServices Class

Microsoft.Data.Schema.Sql Namespace