Metoda Xml (String, String)
Zwraca obiekt, który reprezentuje określony typ i z określonym schematem.
Przestrzeń nazw: Microsoft.SqlServer.Management.Smo
Zestaw: Microsoft.SqlServer.Smo (w Microsoft.SqlServer.Smo.dll)
Syntax
'Deklaracja
Public Shared Function Xml ( _
type As String, _
schema As String _
) As DataType
'Użycie
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
- type
Typ: System. . :: . .String
A String wartość określająca typ.
- schema
Typ: System. . :: . .String
A String wartość określająca schematu typu.
Wartość zwracana
Typ: Microsoft.SqlServer.Management.Smo. . :: . .DataType
A DataType wartość obiektu.
Przykłady
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>")
Zobacz także