Xml 方法 (String, String, XmlDocumentConstraint)
Returns an object that represents the specified type, schema and XML document constraint.
命名空間: Microsoft.SqlServer.Management.Smo
組件: Microsoft.SqlServer.Smo (在 Microsoft.SqlServer.Smo.dll 中)
語法
'宣告
Public Shared Function Xml ( _
type As String, _
schema As String, _
xmlDocumentConstraint As XmlDocumentConstraint _
) As DataType
'用途
Dim type As String
Dim schema As String
Dim xmlDocumentConstraint As XmlDocumentConstraint
Dim returnValue As DataType
returnValue = DataType.Xml(type, schema, _
xmlDocumentConstraint)
public static DataType Xml(
string type,
string schema,
XmlDocumentConstraint xmlDocumentConstraint
)
public:
static DataType^ Xml(
String^ type,
String^ schema,
XmlDocumentConstraint xmlDocumentConstraint
)
static member Xml :
type:string *
schema:string *
xmlDocumentConstraint:XmlDocumentConstraint -> DataType
public static function Xml(
type : String,
schema : String,
xmlDocumentConstraint : XmlDocumentConstraint
) : DataType
參數
- type
型別:System. . :: . .String
A String value that specifies the type.
- schema
型別:System. . :: . .String
A String value that specifies the schema of the type.
- xmlDocumentConstraint
型別:Microsoft.SqlServer.Management.Smo. . :: . .XmlDocumentConstraint
A XmlDocumentConstraint value that determines the XML document constraint.
傳回值
型別:Microsoft.SqlServer.Management.Smo. . :: . .DataType
A DataType object value.
備註
The XmlDocumentConstraint object supports the following values:
Default - Unstructured data
Content - XML fragment
Document - A well formed XML instance
範例
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>", XmlDocumentConstraint.Content
)
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>", [Microsoft.SqlServer.Management.Smo.XmlDocumentConstraint]::Content)