Posts by Vagner Santos • 31 points
8 posts
-
0
votes2
answers47
viewsQ: I can’t email my Webapi
I’m trying to create a function in my Webapi where I return information based on the email address I send, the problem is that the character "." breaks the route. In case I did my action like this:…
asp.net-web-apiasked Vagner Santos 31 -
0
votes1
answer129
viewsQ: Customized Webapi Response
Hello, I have a Webapi service and would like to get an answer specifically with a Date, but at the time I call this service and get the return of my Postasync what I see is just an httpResult…
-
1
votes1
answer159
viewsQ: Bootstrap class does not work with htmlhelper
I am now starting to work with MVC, Razor, Bootstrap etc., and am having a design problem. These 2 textarea are using the same classes, everything is the same, except that in one I carry value of my…
asp.net-mvc-5asked Vagner Santos 31 -
0
votes1
answer358
viewsQ: Xzing with Xamarin Forms
Hello I’m trying to implement barcode reading in my Xamarin.Forms app according to the documentation. https://components.xamarin.com/gettingstarted/zxing.net.mobile , but when I try to execute the…
-
0
votes2
answers560
viewsA: Xamarin.Forms Relative Layout Xaml
Dude, don’t use this relative layout, try to use the grid that’s much better. The grid has a behavior similar to the table where you control the number of rows and columns and can use the same span…
-
0
votes1
answer23
viewsQ: View notification does not work with mvvmhelper
I’m using James Montemagno’s mvvmhelper to develop my app and using the same structure that he teaches to use. I mean with a Baseviewmodel and when I navigate between the pages everything works…
-
1
votes2
answers925
viewsA: Is it possible to make a synchronous call to Webapi?
private void btnListaGenerica_Click(object sender, EventArgs e) { List<Empresa> list = Task.Run(() => GetAll<Empresa>("empresas/listall")).Result; …
-
0
votes2
answers925
viewsQ: Is it possible to make a synchronous call to Webapi?
It is possible to make non-synchrone calls to WebApi? I don’t want my application to pass beaten by the method that executes the query to WebApi, I want her to expect a response and take an attitude…