Soap.InvokeRegistry.TRemotableTypeRegistry.TypeInfoToXSD

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function  TypeInfoToXSD(Info: PTypeInfo; var URI, TypeName: InvString): Boolean;

C++

bool __fastcall TypeInfoToXSD(System::Typinfo::PTypeInfo Info, System::UnicodeString &URI, System::UnicodeString &TypeName);

Properties

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

Description

Returns the type name and namespace URI registered with a remotable class or type.

TypInfoToXSD returns a type name and namespace URI from a type information pointer. The type information can describe either a remotable class that was previously registered by a call to RegisterXSClass, or a remotable type that was previously registered by a call to RegisterXSInfo.

Info is the type information pointer that describes the class or type.

URI returns the namespace URI that was associated with the class or type when it was registered.

TypeName returns the type name that was associated with the class or type when it was registered.

See Also