public class RequestParameterAttribute : Attribute
An attribute which is used to specially mark a property for reflective purposes,
assign a name to the property and indicate it's location in the request as either
in the path or query portion of the request URL.
The name of the parameter. If the parameter is a path parameter this name will be used to substitute the
string value into the path, replacing {name}. If the parameter is a query parameter, this parameter will be
added to the query string, in the format "name=value".
The name of the parameter. If the parameter is a path parameter this name will be used to substitute the
string value into the path, replacing {name}. If the parameter is a query parameter, this parameter will be
added to the query string, in the format "name=value".
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-05 UTC."],[[["The `RequestParameterAttribute` class is used to mark properties for reflection, assigning them a name and indicating their location in a request URL (either path or query)."],["This attribute can be constructed with a name alone, defaulting to `Query` as the parameter type, or with both a name and a specified `RequestParameterType`."],["The `Name` property of `RequestParameterAttribute` defines the parameter's name, used for substitution in path parameters or as the key in query strings."],["The `Type` property indicates whether the parameter is a path, query, or user-defined query parameter."],["The latest version of the `RequestParameterAttribute` is version 1.69.0, but versions 1.68.0, 1.60.0, 1.59.0, 1.55.0, and 1.50.0 are also available."]]],[]]