Alecio Furanze (Ale)

Results 30 comments of Alecio Furanze (Ale)

C# API generation is working: 0fe42cea0e08e789b02bdc7725a73a254f43c8d4

docfx harder documentation because don't have support to hot reload, the alternatives ways of hot reload using nodejs and nodemon or npm-watch is very slow and take long time to...

Soo big task! Waiting for v1.0 😆

Thank you very much. I am very happy and grateful for your comments because it encourages me to improve and continue studying the network in depth in order to make...

```cs var client = new HTTP.Client(); client.On.Modify((httpClient) => { ... modify a internal HttpClient instance, before request. }); client.On.Open((request) => { ... request sucessfully }); client.On.Error((exception) => { ... request...

Formatting: ```cs var client = new HttpClient(); TtsData myObject = new TtsData() { text = inputField.text, voice = "zf_001", }; // Automatically serialise your object to json var content =...

I'm not sure if I'm understanding you... I think you are talking about the way that netly handle response right? if true? I think you are confused about the way...

Your example using netly: ```cs var client = new HTTP.Client(); var data = new TsData() { text = inputField.text, voice = "zf_001" }; var content = StringContent.FromObject(myObject); client.On.Open(r => {...

**My mistake**, I understand what about was meaning. Use. _response.Body.Text_ (string, use _response.Body.Encoding_ to decoding bytes to string, default is UTF8) _rquest.Body.Binary_ (byte[]) Dont use _response.NativeResponse.Content.ReadAsByteArrayAsync().Result;_ use _request.Body.Binary_ instead.

Yes is possible. ```cs var client = new HTTP.Client(); IHTTP.ClientResponse response = null; Exception error; client.On.Open((x) => response = x); // is not http request error: is connection (offline server...),...