DataType.Xml Method (String, String)

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

Namespace:  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Syntax

'Declaration
Public Shared Function Xml ( _
    type As String, _
    schema As String _
) As DataType
'Usage
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

Parameters

Return Value

Type: Microsoft.SqlServer.Management.Smo.DataType
A DataType object value.

Examples

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>")

See Also

Reference

DataType Class

Xml Overload

Microsoft.SqlServer.Management.Smo Namespace