no-header-explode
@azure-tools/typespec-azure-core/no-header-explodeAzure services favor serializing header parameter of array type using the simple style(Where each values is joined by a ,)
Using explode: true property specify that each individual value of the array should be sent as a separate header parameter.
โ Incorrect
Section titled โโ Incorrectโop list( @header(#{ explode: true }) select: string[],): Pet[];โ Correct
Section titled โโ Correctโop list( @header select: string[],): Pet[];op list( @header(#{ explode: false }) select: string[],): Pet[];