Questions tagged [.net-4.7.1]

62 questions
0
votes
0 answers

snmp trap listener no message receiving

So i'm building a snmp trap receiver to receive snmp trap messages. i'm using the sharpsnmp-net package from lexstudios aswell as the sample.engine with pipline from github. I'm creating a simple wpf application to just show messages on screen for…
0
votes
1 answer

How to resolve key/value pair with external .config file

I am specifying in my app.config file, I am adding
0
votes
1 answer

c# convert downloaded string with special language chars

I'm retrieving from geonames the names of locations (that should have unconventional characters depending by the country): for…
ghiboz
  • 7,863
  • 21
  • 85
  • 131
0
votes
1 answer

Error: ASP.NET Ajax client-side framework failed to load after some updates on host

I have a web site in windows host = https://blobloblo/WebForm5.aspx When run that link on FireFox developer & take a look at Console logs, I will see this error : Error: ASP.NET Ajax client-side framework failed to Because of this error many…
SilverLight
  • 19,668
  • 65
  • 192
  • 300
0
votes
0 answers

Add windows forms objects to drawing

I have a class with windows forms objects: class SpecialButton { Button button; Label label1; Label label2; Label label3; } How can I make it drawable? And How can I make instance of this class drawn in Form?
0
votes
1 answer

How to share .resx files between projects in vb.net?

Currently, we have a number of .NET Framework 4.7.1 VB projects (each under a solution of its own) that have the same global resources for language translations: project1.vbproj App_GlobalResources module1.resx module1.en.resx …
masa
  • 2,762
  • 3
  • 21
  • 32
0
votes
1 answer

Seeing errors in QueueTrigger - Azure WebJobs SDK 3.0

I am in the process of upgrading an Azure Web Job with a Queue Trigger from 2.2 to 3.0.4. I added the storage extension Nuget package, changed the configuration code and got the application to run. It is able to pull from the queue, but I am not…
Kyle J V
  • 563
  • 5
  • 21
0
votes
2 answers

Which Specflow version supports .Net framework 4.7.1

We are using Specflow for most of our tests. We are trying to upgrade to the .Net framework 4.7.1. Is there a specflow version that works with this framwork version, or am I whipping a dead horse?
k.c.
  • 1,755
  • 1
  • 29
  • 53
0
votes
0 answers

.Net 4.7.1 MVC5 application does not load correct assembly version

I have a "Dll Hell" problem. In various projects inside my solution I installed System.Net.Http 4.3.3 package, this one also install System.IO 4.3.0 and System.Runtime 4.3.0 packages as dependencies but the application does not load the correct…
0
votes
0 answers

API 422 response truncates data on the client side

I would like to return a 422 Response from my API which includes as much of the data model that I can. I've created a method in our BaseRepository where we pass in the data, and an optional message, to return as a 422. protected IHttpActionResult…
M Kenyon II
  • 4,136
  • 4
  • 46
  • 94
0
votes
1 answer

Encoding a long to a VLQ byte array and writing it to System.IO.BinaryWriter

This question is a follow up to to my last one here: Link In that question I asked how I could read a specific VLQ format, which I won't describe again but you can read it from my previous question. Basically the result from harold was this: static…
user10075804
0
votes
2 answers

Need help writing a binary reader extension method for a specific value format: 6 bit then 7 bits structure

Alright so here goes. I currently need to write an extension method for the System.IO.BinaryReader class that is capable of reading a specific format. I have no idea what this format is called but I do know exactly how it works so i will describe it…
user10075804
0
votes
0 answers

How to make an exe that only runs with .NET 4.7.1

I'm trying to create a simple console application that would run only if .NET 4.7.1 is installed, for testing purposes. I made a console application project and defined Target framework as .NET Framework 4.7.1. After compiling the project, if I run…
Alex Weitz
  • 3,199
  • 4
  • 34
  • 57
0
votes
1 answer

Can't find the device thats self hosting a web api

I'm using Owin and Topshelf to selfhost an ASP.net Web Api. I am able to access it through localhost and 127.0.0.1 on the device that is self hosting it. The idea is that any device that comes onto the network and has my computer or mobile…
Black Lotus
  • 2,377
  • 3
  • 14
  • 18
0
votes
1 answer

Can a model class defined server side and returned by Web API be used in an AutoRest generated .net client?

Situation: Server side in a Web API controller I got a model class, lets call it MyNamespace.MyData, that in addition to properties also has business logic functions like a bool CanEditThis() method. With Visual Studio 2017 I use "Add"->"REST API…