in csharp/core/Streams/FileFormStream.cs [32:39]
public FileFormStream(Dictionary<string, object> form, string boundary)
{
this.form = form;
this.boundary = boundary;
index = 0;
keys = form.Keys.ToList();
streaming = false;
}