3 writes to Name
Aspire.Hosting (3)
Ats\AtsCapabilityScanner.cs (3)
1471
Name
= param.Name ?? $"arg{param.Position}",
1541
Name
= $"arg{i}",
1562
Name
= $"arg{i}",
14 references to Name
Aspire.Hosting.CodeGeneration.TypeScript (14)
AtsTypeScriptCodeGenerator.cs (14)
1154
paramList.Add($"{param.
Name
}: {tsType}");
1183
paramSignature = $"{callbackParameters[0].
Name
}Data: unknown";
1269
WriteLine($" const {cbParam.
Name
}Handle = wrapIfHandle({cbParam.
Name
}Data) as {handleType};");
1270
WriteLine($" const {cbParam.
Name
} = new {wrapperClassName}({cbParam.
Name
}Handle, this._client);");
1275
WriteLine($" const {cbParam.
Name
} = wrapIfHandle({cbParam.
Name
}Data) as {tsType};");
1278
WriteLine($" {returnPrefix}await {callbackName}({cbParam.
Name
});");
1299
WriteLine($" const {cbParam.
Name
}Handle = wrapIfHandle(args.p{i}) as {handleType};");
1300
WriteLine($" const {cbParam.
Name
} = new {wrapperClassName}({cbParam.
Name
}Handle, this._client);");
1305
WriteLine($" const {cbParam.
Name
} = wrapIfHandle(args.p{i}) as {tsType};");
1307
callArgs.Add(cbParam.
Name
);