Soap.InvokeRegistry.TRemotableTypeRegistry.GetXSDInfoForClass

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure GetXSDInfoForClass(Info: PTypeInfo; var URI, TypeName: InvString);

C++

void __fastcall GetXSDInfoForClass(System::Typinfo::PTypeInfo Info, System::UnicodeString &URI, System::UnicodeString &TypeName);

Properties

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

Description

Returns type name and namespace URI that correspond to a remotable class.

GetXSDInfoForClass returns the type name under which a remotable class is registered, along with the namespace URI in which that type name is defined. The class must be previously registered by a call to the RegisterXSClass method.

Info is the type info pointer for the registered remotable class.

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

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

See Also