We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3c8065 commit 75f9b36Copy full SHA for 75f9b36
packages/http-client-csharp/emitter/src/lib/operation-converter.ts
@@ -952,14 +952,14 @@ export function getMethodParameterSegments(
952
953
const namespace = getClientNamespaceString(sdkContext) ?? "";
954
const methodParams: InputMethodParameter[] = [];
955
-
+
956
// Convert each element in the segment path to an InputMethodParameter
957
// This preserves the full path information (e.g., ['Params', 'foo'])
958
for (const segment of firstSegmentPath) {
959
const methodParam = segment as SdkMethodParameter;
960
methodParams.push(fromMethodParameter(sdkContext, methodParam, namespace));
961
}
962
963
return methodParams.length > 0 ? methodParams : undefined;
964
965
0 commit comments