Soap.InvokeRegistry.TRemotableTypeRegistry.XSDToTypeInfo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function  XSDToTypeInfo(const URI, TypeName: InvString): PTypeInfo;

C++

System::Typinfo::PTypeInfo __fastcall XSDToTypeInfo(const System::UnicodeString URI, const System::UnicodeString TypeName);

Properties

Type Visibility Source Unit Parent
function public
Soap.InvokeRegistry.pas
Soap.InvokeRegistry.hpp
Soap.InvokeRegistry TRemotableTypeRegistry

Description

Returns the type information pointer associated with a specified type name.

XSDToTypeInfo looks up a namespace URI and typename, and returns the type information pointer that describes the corresponding Object Pascal type or class. Unlike the URIToInfo method, XSDToTypeInfo can look up built-in type correspondences that do not need to be registered.

URI is the namespace URI for the type.

TypeName is the type name to look up.

See Also