Método Xml (String, String)
Returns an object that represents the specified type and with the specified schema.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (em Microsoft.SqlServer.Smo.dll)
Sintaxe
'Declaração
Public Shared Function Xml ( _
type As String, _
schema As String _
) As DataType
'Uso
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
Parâmetros
- type
Tipo: System. . :: . .String
A String value that specifies the type.
- schema
Tipo: System. . :: . .String
A String value that specifies the schema of the type.
Valor de retorno
Tipo: Microsoft.SqlServer.Management.Smo. . :: . .DataType
A DataType object value.
Exemplos
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>")
Consulte também