[v1.1.5] add a function to send an object as json directly

This commit is contained in:
BlubbFish 2019-03-27 19:32:39 +01:00
parent 671388218e
commit 031076b3ba
2 changed files with 11 additions and 2 deletions

View File

@ -32,8 +32,8 @@ using System.Runtime.InteropServices;
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden, // Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
// indem Sie "*" wie unten gezeigt eingeben: // indem Sie "*" wie unten gezeigt eingeben:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.1.4")] [assembly: AssemblyVersion("1.1.5")]
[assembly: AssemblyFileVersion("1.1.4")] [assembly: AssemblyFileVersion("1.1.5")]
/* /*
* 1.1.0 Remove Helper from Bot-Utils * 1.1.0 Remove Helper from Bot-Utils
@ -41,4 +41,5 @@ using System.Runtime.InteropServices;
* 1.1.2 Fixing bug for Contenttype * 1.1.2 Fixing bug for Contenttype
* 1.1.3 Variables parsing now as a String * 1.1.3 Variables parsing now as a String
* 1.1.4 add Woff as Binary type * 1.1.4 add Woff as Binary type
* 1.1.5 add a function to send an object as json directly
*/ */

View File

@ -1,5 +1,6 @@
using BlubbFish.Utils.IoT.Connector; using BlubbFish.Utils.IoT.Connector;
using BlubbFish.Utils.IoT.Events; using BlubbFish.Utils.IoT.Events;
using LitJson;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.IO; using System.IO;
@ -94,6 +95,13 @@ namespace BlubbFish.Utils.IoT.Bots
return; return;
} }
protected void SendJsonResponse(Object data, HttpListenerContext cont) {
Byte[] buf = Encoding.UTF8.GetBytes(JsonMapper.ToJson(data));
cont.Response.ContentLength64 = buf.Length;
cont.Response.OutputStream.Write(buf, 0, buf.Length);
Console.WriteLine("200 - " + cont.Request.Url.PathAndQuery);
}
public void Dispose() { public void Dispose() {
this.httplistener.Stop(); this.httplistener.Stop();
this.httplistener.Close(); this.httplistener.Close();