The ProcessRequest() has a problem when parsing the headers dictionary. It is setting the key and value of the KeyValuePair<string, string> to the same thing. The Key should be the header field name, and the value should be the header field value.
This bug makes it impossible to use the v1.0.0, thefore, it will be unlisted.
Implement unit testing for the ProcessRequest() to ensure the component will not fail later.
The
ProcessRequest()
has a problem when parsing the headers dictionary. It is setting the key and value of theKeyValuePair<string, string>
to the same thing. The Key should be the header field name, and the value should be the header field value.This bug makes it impossible to use the
v1.0.0
, thefore, it will be unlisted.Implement unit testing for the
ProcessRequest()
to ensure the component will not fail later.