共用方式為


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 命名空間