System.Net.URLClient.TURI.ParameterByName

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ParameterByName[const AName: string]: string read GetParameterByName write SetParameterByName;

C++

__property System::UnicodeString ParameterByName[const System::UnicodeString AName] = {read=GetParameterByName, write=SetParameterByName};

Properties

Type Visibility Source Unit Parent
property public
System.Net.URLClient.pas
System.Net.URLClient.hpp
System.Net.URLClient TURI

Description

The value of the parameter with the name AName from the array of TURI parameters.

Note: If there is more than one parameter with the name AName, ParameterByName gets/sets the value of the parameter that has the lowest index in the array of TURI parameters.

Exceptions

When you get or set the ParameterByName property, the following exception may occur:

Exception Exception.Message Scenarios

ENetURIException

Parameter <AName> not found

  • There is no parameter with the specified name.

See Also