Error in Xamarin Forms using NEST Package

I am implementing a basic test using the Nuget Nest package, and it throws me the following error:
SystemPlatformNotSupportedException.

var node = new Uri ("the_uri");
var pool = new SingleNodeConnectionPool (node);
var settings = new ConnectionSettings (pool);
settings.BasicAuthentication (_user, _passw);
settings.PrettyJson (true);
settings.RequestTimeout (new TimeSpan (0,0,5));
settings.DefaultIndex ("mm_campanias_dev");
var client = new ElasticClient (settings);

        var searchResults = client.Search <Campania> (s => s
            .Query (q => q
                 .Term (p => p.status, true)
            )
        );

Arriving at this line sends the error: var settings = new ConnectionSettings (pool);

Any ideas, I hope you can help me.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.