[AttributeUsage(AttributeTargets.Property, AllowMultiple = false)]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"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-07 UTC."],[[["\u003cp\u003eThe \u003ccode\u003eRequestParameterAttribute\u003c/code\u003e class is used to mark a property for reflection, assign a name, and indicate its location in a request URL, either in the path or query.\u003c/p\u003e\n"],["\u003cp\u003eThis attribute can be used on properties and is limited to a single instance per property.\u003c/p\u003e\n"],["\u003cp\u003eIt inherits from the \u003ccode\u003eAttribute\u003c/code\u003e class, and subsequently the \u003ccode\u003eobject\u003c/code\u003e class, inheriting members from those parent classes.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eRequestParameterAttribute\u003c/code\u003e constructor allows setting a name and specifying if the parameter is a Path or Query type.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eName\u003c/code\u003e and \u003ccode\u003eType\u003c/code\u003e properties of the \u003ccode\u003eRequestParameterAttribute\u003c/code\u003e provide access to the parameter's name and type, respectively.\u003c/p\u003e\n"]]],[],null,[]]