skip to Main Content

Get value of dynamic objects in ASP.Net Core

I need to read a value from HTTP response. Here is an example of the response in which I'm trying to fetch (description) value: { "result":{ "code":"200.300.404", "description":"successful" }, "buildNumber":"1f9@2021-12-23 09:56:49 +0000", "timestamp":"2021-12-25 17:22:35+0000", "ndc":"8976eaedf8da" } Here is my code…

VIEW QUESTION

How to connect Docker.DotNet library to remote Linux docker

There is NET CORE wrapper around docker (https://github.com/dotnet/Docker.DotNet) It use strange abstraction to connection to docker var client = new DockerClientConfiguration(new Uri("http://ubuntu-docker.cloudapp.net:4243")).CreateClient(); My docker is accessible from remote machine as sudo curl --unix-socket /var/run/docker.sock http://157.XX.XX.84/v1.41/containers/json What connection string I need…

VIEW QUESTION
Back To Top
Search