EMS.ResourceAPI.TEndpointParams

From RAD Studio API Documentation
Jump to: navigation, search

System.TObjectTEndpointParams

Delphi

TEndpointParams = class abstract

C++

class PASCALIMPLEMENTATION TEndpointParams : public System::TObject

Properties

Type Visibility Source Unit Parent
class public
EMS.ResourceAPI.pas
EMS.ResourceAPI.hpp
EMS.ResourceAPI EMS.ResourceAPI

Description

List of parameters of a request.

To manage an instance of TEndpointParams:

  • Use Count to find out how many parameters the list contains, and use Contains to check whether or not a certain parameter is on the list.
  • Use TryGetValue or Values to obtain the value of a parameter given its name, or use Pairs to get a pair of parameter name and value given its index in the list of parameters.
  • Use an enumerator to iterate through the parameters or create an array that contains the parameters.
  • Use Add to add a new parameter to the list.

See Also