Поделиться через


Метод DataType.Xml (String, String)

Returns an object that represents the specified type and with the specified schema.

Пространство имен:  Microsoft.SqlServer.Management.Smo
Сборка:  Microsoft.SqlServer.Smo (в Microsoft.SqlServer.Smo.dll)

Синтаксис

'Декларация
Public Shared Function Xml ( _
    type As String, _
    schema As String _
) As DataType
'Применение
Dim type As String 
Dim schema As String 
Dim returnValue As DataType 

returnValue = DataType.Xml(type, schema)
public static DataType Xml(
    string type,
    string schema
)
public:
static DataType^ Xml(
    String^ type, 
    String^ schema
)
static member Xml : 
        type:string * 
        schema:string -> DataType
public static function Xml(
    type : String, 
    schema : String
) : DataType

Параметры

Возвращаемое значение

Тип: Microsoft.SqlServer.Management.Smo.DataType
A DataType object value.

Примеры

Visual Basic

Dim dt As DataType
dt = New DataType(SqlDataType.Xml, "Test XML Schema", "<xsd:schema xmlns:xsd=\`"http://www.w3.org/2001/XMLSchema\`" targetNamespace=\`"NS2\`"><xsd:element name=\`"elem1\`" type=\`"xsd:integer\`"/></xsd:schema>")

PowerShell

$dt = new-object Microsoft.SqlServer.Management.Smo.DataType([Microsoft.SqlServer.Management.Smo.SqlDataType]::Xml, "Test XML Schema", "<xsd:schema xmlns:xsd=\`"http://www.w3.org/2001/XMLSchema\`" targetNamespace=\`"NS2\`"><xsd:element name=\`"elem1\`" type=\`"xsd:integer\`"/></xsd:schema>")

См. также

Справочник

DataType Класс

Перегрузка Xml

Пространство имен Microsoft.SqlServer.Management.Smo