Description
Gets the header of all requests.
Applies to
Syntax
objectname.GetHeaders ( )
Argument |
Description |
---|---|
objectname |
A reference to the TokenRequest object in which you want to get the request header. |
Return value
String.
Returns the header information of all requests. If any argument's value is null, the method returns null.
Examples
The following example shows the use of the GetHeaders function to get the value of all headers:
string ls_headers TokenRequest lnv_TokenRequest ls_headers = lnv_TokenRequest.getheaders()
See also
Description
Gets the header of all responses.
Applies to
Syntax
objectname.GetHeaders ( )
Argument |
Description |
---|---|
objectname |
A reference to the TokenResponse object in which you want to get the response header. |
Return value
String.
Returns the header information of all responses.
Examples
The following example shows the use of the GetHeaders function to get the value of all headers:
string ls_headers TokenResponse lnv_TokenResponse ls_headers = lnv_TokenResponse.getheaders()
See also
Description
Gets the header of all requests.
Applies to
Syntax
objectname.GetHeaders ( )
Argument |
Description |
---|---|
objectname |
A reference to the OAuthRequest object in which you want to get the request header. |
Return value
String.
Returns the header information of all requests. If any argument's value is null, the method returns null.
Examples
The following example shows the use of the GetHeaders function to get the value of all headers:
string ls_headers OAuthRequest lnv_OAuthRequest ls_headers = lnv_OAuthRequest.getheaders()
See also
Description
Gets the header of all responses.
Applies to
Syntax
objectname.GetHeaders ( )
Argument |
Description |
---|---|
objectname |
A reference to the ResourceResponse object in which you want to get the response header. |
Return value
String.
Returns the header information of all responses.
Examples
The following example shows the use of the GetHeaders function to get the value of all headers:
string ls_headers ResourceResponse lnv_ResourceResponse ls_headers = lnv_ResourceResponse.getheaders()
See also