Soap.InvokeRegistry.TRemotableTypeRegistry.URIToClass

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function  URIToClass(const URI, Name: InvString; var IsScalar: Boolean): TClass; overload;
function  URIToClass(const URI, Name: InvString): TClass; overload;

C++

System::TClass __fastcall URIToClass(const System::UnicodeString URI, const System::UnicodeString Name, bool &IsScalar)/* overload */;
System::TClass __fastcall URIToClass(const System::UnicodeString URI, const System::UnicodeString Name)/* overload */;

Properties

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

Description

Returns the class associated with a specified namespace URI.

URIToClass looks up a registered remotable class given its namespace URI and typename.

URI is the namespace URI associated with the class. This association is established by the RegisterXSClass method.

Name is the name of the type that the class represents. If the class does not have a corresponding type name, Name should be an empty string.

IsScalar returns true if the class represents a scalar type, false otherwise.

URIToClass returns the class reference for the class identified by URI (and Name).

See Also