UnityPlugin-AVProVideo icon indicating copy to clipboard operation
UnityPlugin-AVProVideo copied to clipboard

Possibility to add whole HttpHeader to platform options, not only by name/value as separate strings

Open Borod4r opened this issue 4 years ago • 0 comments

It is a pretty simple feature request. Sometimes it is just more convenient to add HttpHeader instance to platform options instead of decomposing it to name and value strings.

What I'm proposing is to add this method to HttpHeaderData class:

public void Add(HttpHeader header) { httpHeaders.Add(header); }

Usually, I'm just modifying your sources for similar needs but then it's inconvenient to keep track of them during upgrades.

Borod4r avatar Sep 27 '21 09:09 Borod4r