Posts by Samuel McAravey • 156 points
3 posts
-
0
votes2
answers189
viewsA: Byte Array x Stream
It really depends on how your system is created. It is important to know that a stream does not mean that the data has arrived on the computer. It seems quite like Ienumerable at times the data is…
-
1
votes1
answer153
viewsA: Add selected lines from Gridcontrol to Observablecollection
This gets a little more complicated because you are using Devexpress the controls are not the same as the normal XAML controls. But looking at the documentation, it looks like it has a property…
-
3
votes3
answers3759
viewsA: Using Token method GET Webapi Httpclient
The problem is here: client.DefaultRequestHeaders.Authorization = new System.Net.Http.Headers.AuthenticationHeaderValue("X-Auth-Token", vAuth_token); What happens is that the HTTP header becomes…