CustomUrlParams Parameter (Connect-OData Cmdlet)
A string of custom URL parameters to be included with the HTTP request, in the form field1=value1&field2=value2&field3=value3.
Syntax
Connect-OData -CustomUrlParams string
Data Type
cstr
Default Value
""
Remarks
This property enables you to specify custom query string parameters that are included with the HTTP request. The parameters must be encoded as a query string in the form field1=value1&field2=value2&field3=value3, where each value is URL encoded. URL encoding converts the characters in the string that can be transmitted over the internet as follows:
- Non-ASCII characters are replaced with their equivalent in the form of a "%" followed by two hexadecimal digits.
- Spaces are replaced with either a plus sign (+) or %20.