Ipfs.Http.IpfsClient doesnt respond

Hi guys

I have the latest go-ipfs for windows and the latest Ipfs.Http.IpfsClient from Nuget
Ipfs node is started using “ipfs daemon” command

Then I try to access it but nothing from the below works, Ipfs hangs in every call:

var ipfs = new IpfsClient();

var data = ipfs.FileSystem.ReadFileAsync("/ipfs/QmYwAPJzv5CZsnA625s3Xf2nemtYgPpHdWEz79ojWnPbdG/readme").Result;
var peer = ipfs.IdAsync().Result;
var cid = ipfs.FileSystem.AddTextAsync(w.ToString()).Result.Id;

Where the problem could be?

Ok I’ve found the cause
We cant use .Result property of xxxxxAsync return. Only await