Search found 17 matches

Go to advanced search

by Black-Byte
Thu Nov 28, 2019 3:00 am
Forum: Pre-Releases, Downloads and Announcements
Topic: v2.0 Preview 0.6 RELEASED!
Replies: 14
Views: 74172

Re: v2.0 Preview 0.6 RELEASED!

Hi, here only a quick fix for those people that have the same problem like me. When i'm building a project with cshtml5 and Visual Studio 2017 , i've got allways an error that some files could not be overwritten. Add following line the pre build process in your solution rd /s /q "$(TargetDir)Ou...
by Black-Byte
Tue Nov 19, 2019 1:13 am
Forum: Pre-Releases, Downloads and Announcements
Topic: v2.0 Preview 0.6 RELEASED!
Replies: 14
Views: 74172

Re: v2.0 Preview 0.6 RELEASED!

Hi, i'm testing again with latest Release(2.0.0-alpha50-070). It works mostly. But i stumble upon some longe time consumption. My software builds some complex canvas elements like 4 main elements with many childs. And i want to switch fast between them. So i decided to build at startup and set all u...
by Black-Byte
Thu Oct 10, 2019 6:02 am
Forum: Pre-Releases, Downloads and Announcements
Topic: v2.0 Preview 0.6 RELEASED!
Replies: 14
Views: 74172

Re: v2.0 Preview 0.6 RELEASED!

Hi, i've testing with the MediaElement. Looks like it doesn't like setting width/height via sourcecode. The params was only set on the surrounding div element. Not at the video element itself, my test videos are allways overflowing the borders. A quick fix is to set the same style to the video eleme...
by Black-Byte
Tue Oct 01, 2019 1:06 am
Forum: Pre-Releases, Downloads and Announcements
Topic: v2.0 Preview 0.5
Replies: 11
Views: 24632

Re: v2.0 Preview 0.5 RELEASED!

The native HtmlCanvas is built for speed not styling. When you have thousands of elements, it outperforms the heavier nested <div> translation by orders of magnitude. I know, i've tried the "normal" way before, but for my project it was to slow (It's an serverside application with a dynam...
by Black-Byte
Fri Sep 27, 2019 3:04 am
Forum: Pre-Releases, Downloads and Announcements
Topic: v2.0 Preview 0.5
Replies: 11
Views: 24632

Re: v2.0 Preview 0.5 RELEASED!

Hi, i'm testing with CSHTML5.Native.Html.Controls and i've some issues about the HtmlCanvasElement i want use a brush for the background but i't doesnt work. Could it be that the function is at the moment not workable ? Cause found this // // Zusammenfassung: // (Deprecated) Access to FillColor with...
by Black-Byte
Wed Sep 11, 2019 6:23 am
Forum: Pre-Releases, Downloads and Announcements
Topic: v2.0 Preview 0.5
Replies: 11
Views: 24632

Re: v2.0 Preview 0.5 RELEASED!

Hi,

could you please post the Changlog from this to 2.0.0-alpha45-063 ?

Greets
by Black-Byte
Wed Apr 10, 2019 5:00 am
Forum: Pre-Releases, Downloads and Announcements
Topic: v2.0 Preview 0.2
Replies: 9
Views: 19601

Re: v2.0 Preview 0.2 RELEASED!

Hi, i'm testing with the V2.0 P0.1 and have some issues. Something would be the support for JSON. With the Extension from https://gist.github.com/cshtml5/2446871a8bc0fa4ceddcfb448b6aca54 it doesn't works well with enums with a numeric replace. The Bridge.NET has a JsonConvert that has no problem wit...
by Black-Byte
Fri Mar 29, 2019 1:48 am
Forum: Technical Support
Topic: Problem with JsonConvert.SerializeObject
Replies: 3
Views: 5919

Re: Problem with JsonConvert.SerializeObject

Looks like that was my selfmade problem. I was used to the replace of an enum to its value. JSON doesn't have enums. So i have undo my changes and use now the direkt replacement and it works. Output -> {"A":"AAA","B":"BBB","C":"Hello"} give...
by Black-Byte
Wed Mar 27, 2019 8:24 am
Forum: Technical Support
Topic: Problem with JsonConvert.SerializeObject
Replies: 3
Views: 5919

Re: Problem with JsonConvert.SerializeObject

I've tested a little more and i found some bug in JsonConvert.cs the SerializeObject converts an enum not correct. My Example gives me a Return of {"A":"AAA","B":"BBB","C":"Hello"} but thats not correct I've change some code in JsonConvert....
by Black-Byte
Tue Mar 26, 2019 8:35 am
Forum: Technical Support
Topic: Problem with JsonConvert.SerializeObject
Replies: 3
Views: 5919

Re: Problem with JsonConvert.SerializeObject

I've found the problem i must use get/set test x = new test(); x.A = "AAA"; x.B = "BBB"; x.C = test.ENU_TEST.Hello; string temp = JsonConvert.SerializeObject(x, true); public class test { public string A { get; set;} public string B { get; set;} public ENU_TEST C { get; set; } pu...
by Black-Byte
Tue Mar 26, 2019 7:42 am
Forum: Technical Support
Topic: Problem with JsonConvert.SerializeObject
Replies: 3
Views: 5919

Problem with JsonConvert.SerializeObject

Hi, i'm testing with the new 2.0 preview release and with the addon jsonconvert from https://gist.github.com/cshtml5/2446871a8bc0fa4ceddcfb448b6aca54. i've no problem to deserialize but simple serialize does only return an empy value. internal void check(); { test x = new test(); string temp = JsonC...
by Black-Byte
Wed Nov 02, 2016 3:33 am
Forum: Extensions and Plugins for CSHTML5
Topic: WebSocket Extension for CSHTML5
Replies: 18
Views: 69054

Re: WebSocket Extension for CSHTML5

I know. We have different projects and both ways are interesting. For the first one a single webservice would be easy cause we allready use something like an webservice (websync from Frozenmountain) with an overlaying protocoll. That could i switch to a normal websocket (or the guys at Frozenmountai...
by Black-Byte
Tue Nov 01, 2016 3:13 am
Forum: Extensions and Plugins for CSHTML5
Topic: WebSocket Extension for CSHTML5
Replies: 18
Views: 69054

Re: WebSocket Extension for CSHTML5

Sometimes the answer is so close .. i've started the client with ws://localhost:12345 ... naturally when im starting the client on a remote machine it doesn't work. Now with a correct IP it works with my code. I found it after reading your example.
Thanks.
by Black-Byte
Mon Oct 31, 2016 7:50 am
Forum: Extensions and Plugins for CSHTML5
Topic: WebSocket Extension for CSHTML5
Replies: 18
Views: 69054

Re: WebSocket Extension for CSHTML5

Ok, here is the Client using System; using System.Collections.Generic; using System.IO; using System.Linq; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; namespace CXAML_Websocket { public partial class MainPage : Page { public CSHTML5.Extensions.WebSockets.WebSocket webSocket; public MainPa...
by Black-Byte
Mon Oct 31, 2016 4:36 am
Forum: Extensions and Plugins for CSHTML5
Topic: WebSocket Extension for CSHTML5
Replies: 18
Views: 69054

Re: WebSocket Extension for CSHTML5

Hi, thanks for the good advice. I should have first search at the nuget library ;). Now it works local. But when im testing with a remote client i got a nullref exception at JSIL.Bootstrap.js line 4222 that outside my code. To clarify i've made a seperate button to start the connection the page load...
by Black-Byte
Fri Oct 28, 2016 5:08 am
Forum: Extensions and Plugins for CSHTML5
Topic: WebSocket Extension for CSHTML5
Replies: 18
Views: 69054

Re: WebSocket Extension for CSHTML5

Hi, i'm seeking for an working example at the server side without IIS. The last one i tried was this one http://www.c-sharpcorner.com/uploadfile/bhushanbhure/websocket-server-using-httplistener-and-client-with-client/ . But unfortunately it doesn't work. The connection goes up and after first sendin...
by Black-Byte
Fri Jan 29, 2016 2:18 am
Forum: Technical Support
Topic: [SOLVED] Websockets usable ?
Replies: 2
Views: 5480

[SOLVED] Websockets usable ?

Hi, i'm looking through your examples and docmentation how i could rebuild my silverlight project with C#/XAML. But i stumble about the communications. My old project uses silverlight connected via a comet server( http://frozenmountain.com/products/websync/overview ) to push data realtime into the c...

Go to advanced search

 

 

cron