[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 it a name, and specify its location in a request URL (either in the path or query).\u003c/p\u003e\n"],["\u003cp\u003eThis attribute can only be applied once to a property, as indicated by \u003ccode\u003eAllowMultiple = false\u003c/code\u003e in its definition.\u003c/p\u003e\n"],["\u003cp\u003eThere are two constructors for \u003ccode\u003eRequestParameterAttribute\u003c/code\u003e: one takes the parameter's name and defaults to \u003ccode\u003eQuery\u003c/code\u003e type, while the other takes the name and a \u003ccode\u003eRequestParameterType\u003c/code\u003e to explicitly define if it is a path or query type.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eName\u003c/code\u003e property of the attribute holds the name of the parameter, which is used for substitution in the path or for inclusion in the query string, and the \u003ccode\u003eType\u003c/code\u003e property specifies if it is either a Path or Query parameter.\u003c/p\u003e\n"],["\u003cp\u003eThe latest version of this documentation is v1.69.0, with others down to v1.50.0 available to view.\u003c/p\u003e\n"]]],[],null,[]]