ParameterLocation Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The location of the parameter.
public enum ParameterLocation
type ParameterLocation =
Public Enum ParameterLocation
- Inheritance
-
ParameterLocation
Fields
Name | Value | Description |
---|---|---|
Query | 0 | Parameters that are appended to the URL. |
Header | 1 | Custom headers that are expected as part of the request. |
Path | 2 | Used together with Path Templating, where the parameter value is actually part of the operation's URL |
Cookie | 3 | Used to pass a specific cookie value to the API. |