EMS.ResourceAPI.TEndpointParams
| [–] Properties | |
|---|---|
| Type: class | |
| Visibility: public | |
| Source: EMS.ResourceAPI.pas EMS.ResourceAPI.hpp
| |
| Unit: EMS.ResourceAPI | |
| Parent: EMS.ResourceAPI | |
Delphi
TEndpointParams = class abstract
C++
class PASCALIMPLEMENTATION TEndpointParams : public System::TObject
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.