Search found 21 matches

Go to advanced search

by sebas
Tue Apr 17, 2018 1:42 am
Forum: Pre-Releases, Downloads and Announcements
Topic: v1.1.1 released (AncestorType)
Replies: 3
Views: 11714

Re: v1.1.1 released! [Download] (AncestorType)

Code: Select all

public int _port
    Member of System.Uri


)))
by sebas
Tue Apr 03, 2018 11:47 pm
Forum: Bug Reports
Topic: TabControl + binded combobox error
Replies: 3
Views: 10276

TabControl + binded combobox error

JS-Error in browser where tab is switched 1-2-1 <Page x:Class="Application1.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="using:Application1" xmlns:d="http:/...
by sebas
Mon Mar 19, 2018 6:33 am
Forum: Bug Reports
Topic: Catch doesnt catch
Replies: 1
Views: 8122

Catch doesnt catch

Very many cases, when catch doesnt catch exceptions. Context possible catch only in Finally (.
I do that

Code: Select all

bool ok=false
try
{
   ....
   ok = true;
}
catch
{
   ok = true
   ...
}
finally
{
   if(!ok} throw new exception("unknown error")
}
by sebas
Fri Mar 16, 2018 5:36 am
Forum: Technical Support
Topic: throw CustomException
Replies: 1
Views: 4050

throw CustomException

Hi!
When are you going to make support for throwing custom exception?
Thk.
by sebas
Tue Mar 06, 2018 3:14 am
Forum: Bug Reports
Topic: WebClient doesnt throw 401 response
Replies: 0
Views: 5634

WebClient doesnt throw 401 response

.. and returns empty string
Simulator throws...
by sebas
Mon Mar 05, 2018 2:25 am
Forum: Bug Reports
Topic: [SOLVED] double.TryParse bug in browser
Replies: 3
Views: 7245

Re: double.TryParse bug in browser

may be it depends from regional settings?
what is delmitter?
by sebas
Mon Feb 26, 2018 8:14 am
Forum: Bug Reports
Topic: WebView.Navigate cant navigate to external site in simulator
Replies: 0
Views: 5370

WebView.Navigate cant navigate to external site in simulator

DESCRIPTION: Refused to display 'https://login.live.com/oauth20_authorize.srf?...' in a frame because it set 'X-Frame-Options' to 'deny'.


but works in browser
by sebas
Tue Jan 30, 2018 12:43 am
Forum: Technical Support
Topic: DataGridTemplateColumn binding
Replies: 1
Views: 4235

DataGridTemplateColumn binding

I have problem with it. When cell leaves editing mode TextBlock dosnt get new value. But binded structure get new value. What is wrong? <DataGrid x:Name="UserLoginGrid" IsReadOnly="False" ItemsSource="{Binding userLogins, Mode=TwoWay}"> <DataGrid.Columns> <DataGridTempl...
by sebas
Mon Jan 15, 2018 6:41 am
Forum: Bug Reports
Topic: Json Deserialization error
Replies: 2
Views: 5715

Re: Json Deserialization error

if swap that

Code: Select all

            public String param1 { get; set; }
            public Model2 param2 { get; set; } = new Model2() { param3 = "1" };

than
'Unable to create an instance of type 'System.String'. A common cause is that the type does not have a default public constructor.'
by sebas
Mon Jan 15, 2018 6:36 am
Forum: Bug Reports
Topic: Json Deserialization error
Replies: 2
Views: 5715

Json Deserialization error

using System; using Windows.UI.Xaml; using CSHTML5.Extensions.Json; namespace Application2 { public sealed partial class App : Application { public App() { Exec(); } public class Model2 { public String param3 { get; set; } } public class Model1 { public Model2 param2 { get; set; } = new Model2() {p...
by sebas
Wed Dec 20, 2017 4:31 am
Forum: Bug Reports
Topic: [SOLVED] Linq<Int32> Min() Error
Replies: 2
Views: 5273

[SOLVED] Linq<Int32> Min() Error

Code: Select all

            Int32[] ii = new Int32[] { 1, -2,1};
            var i = ii.Min();
by sebas
Wed Dec 20, 2017 4:00 am
Forum: Bug Reports
Topic: [SOLVED] String.IndexOfAny with startIndex > 0 doesnt work in browser
Replies: 2
Views: 5537

[SOLVED] String.IndexOfAny with startIndex > 0 doesnt work in browser

// Enter construction logic he;//re... var uri = "http://host.com"; MessageBox.Show(uri.IndexOfAny(new char[] { '/', '?' }, 1).ToString()); //Em = 5 Browser = -1 MessageBox.Show(uri.IndexOfAny(new char[] { '/', '?' }, 0).ToString()); //Em = 5 Browser = 5
by sebas
Fri Dec 01, 2017 2:34 am
Forum: Pre-Releases, Downloads and Announcements
Topic: Beta 12.7 of C#/XAML for HTML5 released
Replies: 5
Views: 14615

Re: New Beta 12.7 released! [Download] (bug fixes)

YEss!!! I'd found it))) ufff Error happens in case casting Array -> IEnamerable,,, BUT!!! If array was been created with JsonCOnvert. using CSHTML5.Extensions.Json; using System; using System.Collections; using System.Collections.Generic; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; namesp...
by sebas
Thu Nov 30, 2017 12:12 am
Forum: Pre-Releases, Downloads and Announcements
Topic: Beta 12.7 of C#/XAML for HTML5 released
Replies: 5
Views: 14615

Re: New Beta 12.7 released! [Download] (bug fixes)

after 12.6 my project can be compiled and works in emulator. But i have many errors in browser like "Cast Object to IEnumerable". Now i try find those cases, but its very difficalt because code works in emulator correctly.

Now my stable version is 12.5
by sebas
Fri Nov 24, 2017 6:59 am
Forum: Pre-Releases, Downloads and Announcements
Topic: Beta 12.6 of C#/XAML for HTML5 released (20+ bug fixes)
Replies: 7
Views: 16769

Re: New Beta 12.6 released! [Download] (20+ bug fixes)

JsonConvert .... Severity Code Description Project File Line Suppression State Error The method "ArrayList..ctor" is not yet supported. You can see the list of supported methods at: http://www.cshtml5.com/links/what-is-supported.aspx - You can learn how to implement missing methods at: htt...
by sebas
Fri Nov 24, 2017 6:56 am
Forum: Bug Reports
Topic: [SOLVED] WebClient doesnt throw exception 400
Replies: 1
Views: 4125

[SOLVED] WebClient doesnt throw exception 400

try { WebClient wc = new WebClient(); string str; var Url = "http://dev01.tnomer.ru:7000/private/api/dictionary/work/asd"; wc.Encoding = Encoding.UTF8; wc.Headers.Set("Content-Type", "application/json"); str = wc.DownloadString(Url ); System.Windows.MessageBox.Show(&qu...
by sebas
Fri Nov 10, 2017 6:57 am
Forum: Bug Reports
Topic: [SOLVED] ArrayList.ToArray() error
Replies: 5
Views: 8236

Re: ArrayList.ToArray() error

Hi! No problems) I dont use it
by sebas
Tue Nov 07, 2017 5:30 am
Forum: Bug Reports
Topic: [SOLVED] ArrayList.ToArray() error
Replies: 5
Views: 8236

Re: ArrayList.ToArray() error

Code: Select all

            var c = new ArrayList();
            foreach(object b in c) // there is error too
            {
//....
            }
by sebas
Tue Nov 07, 2017 5:15 am
Forum: Bug Reports
Topic: [SOLVED] ArrayList.ToArray() error
Replies: 5
Views: 8236

[SOLVED] ArrayList.ToArray() error

Code: Select all

            var c = new ArrayList();
            var b = c.ToArray();
 


in browser only. in wpf isnot fired.

Go to advanced search