XmlSchemaType.GetBuiltInComplexType Method

Definition

Returns an XmlSchemaComplexType that represents the built-in complex type of the complex type specified.

Overloads

GetBuiltInComplexType(XmlTypeCode)

Returns an XmlSchemaComplexType that represents the built-in complex type of the complex type specified.

GetBuiltInComplexType(XmlQualifiedName)

Returns an XmlSchemaComplexType that represents the built-in complex type of the complex type specified by qualified name.

GetBuiltInComplexType(XmlTypeCode)

Source:
XmlSchemaType.cs
Source:
XmlSchemaType.cs
Source:
XmlSchemaType.cs

Returns an XmlSchemaComplexType that represents the built-in complex type of the complex type specified.

public:
 static System::Xml::Schema::XmlSchemaComplexType ^ GetBuiltInComplexType(System::Xml::Schema::XmlTypeCode typeCode);
public static System.Xml.Schema.XmlSchemaComplexType? GetBuiltInComplexType (System.Xml.Schema.XmlTypeCode typeCode);
public static System.Xml.Schema.XmlSchemaComplexType GetBuiltInComplexType (System.Xml.Schema.XmlTypeCode typeCode);
static member GetBuiltInComplexType : System.Xml.Schema.XmlTypeCode -> System.Xml.Schema.XmlSchemaComplexType
Public Shared Function GetBuiltInComplexType (typeCode As XmlTypeCode) As XmlSchemaComplexType

Parameters

typeCode
XmlTypeCode

One of the XmlTypeCode values representing the complex type.

Returns

The XmlSchemaComplexType that represents the built-in complex type.

Applies to

GetBuiltInComplexType(XmlQualifiedName)

Source:
XmlSchemaType.cs
Source:
XmlSchemaType.cs
Source:
XmlSchemaType.cs

Returns an XmlSchemaComplexType that represents the built-in complex type of the complex type specified by qualified name.

public:
 static System::Xml::Schema::XmlSchemaComplexType ^ GetBuiltInComplexType(System::Xml::XmlQualifiedName ^ qualifiedName);
public static System.Xml.Schema.XmlSchemaComplexType? GetBuiltInComplexType (System.Xml.XmlQualifiedName qualifiedName);
public static System.Xml.Schema.XmlSchemaComplexType GetBuiltInComplexType (System.Xml.XmlQualifiedName qualifiedName);
static member GetBuiltInComplexType : System.Xml.XmlQualifiedName -> System.Xml.Schema.XmlSchemaComplexType
Public Shared Function GetBuiltInComplexType (qualifiedName As XmlQualifiedName) As XmlSchemaComplexType

Parameters

qualifiedName
XmlQualifiedName

The XmlQualifiedName of the complex type.

Returns

The XmlSchemaComplexType that represents the built-in complex type.

Exceptions

The XmlQualifiedName parameter is null.

Applies to