V0d01ey
V0d01ey
When using enum values in code for JS translation analyzer gives an error: > Type not found in JavaScript compilation: ClientServer10.Flags ```csharp [Flags] public enum Flags { empty = 0x0,...
WebSharper fails to serialize Dictionary as a result of the remote method: ``` [Remote] public static Task TestSerialization(string input) { var dict = new Dictionary(); dict.Add("key", input); return Task.FromResult(dict); }...
As for now following remote method gives WriteException on sending response. ``` [Remote] public static Task GetNaN() { return Task.FromResult(float.NaN); } ``` ``` [WriteException: Выдано исключение типа "WebSharper.Core.Json+WriteException".] WebSharper.Core.Json.wN@284(TextWriter writer,...
Binding a handler to ws-onclick hole results in exception "Invalid hole, expected quoted event: ". ```html Add ``` ```csharp public class Server { ... [Website] public static Sitelet Main =>...