RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
InvokeRegistry.IntfExceptionItem Record

IntfExceptionItem and TExceptionItemArray describe the association between a remotable exception and an interface that can raise it.

Pascal
IntfExceptionItem = record
  ClassType: TClass;
  MethodNames: string;
end;
C++
struct IntfExceptionItem {
  TClass ClassType;
  AnsiString MethodNames;
};

IntfExceptionItem describes a single remotable exception type. TExceptionItemArray is an array of IntfExceptionItem descriptors. Typically, this array describes the set of exceptions associated with an invokable interface.  

ClassType is the class reference for the remotable exception class.  

MethodNames is a comma-delimited list of method names. If MethodNames is an empty string, the exception is associated with all the methods on an interface. If MethodNames is nonempty, the exception is associated only with those methods of the interface that the MethodNames field lists. 

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!