mirror of
https://github.com/awatertrevi/xamarin-neo4j.git
synced 2026-09-22 09:05:29 +00:00
26 lines
502 B
C#
26 lines
502 B
C#
//
|
|
// TrustManagerService.cs
|
|
//
|
|
// Trevi Awater
|
|
// 14-03-2022
|
|
//
|
|
// © Xamarin.Neo4j.iOS
|
|
//
|
|
|
|
using Microsoft.Maui.Controls;
|
|
using Neo4j.Driver;
|
|
using Xamarin.Neo4j.iOS.Services;
|
|
using Xamarin.Neo4j.Services.Interfaces;
|
|
|
|
[assembly: Dependency(typeof(TrustManagerService))]
|
|
namespace Xamarin.Neo4j.iOS.Services
|
|
{
|
|
public class TrustManagerService : ITrustManagerService
|
|
{
|
|
public TrustManager GetNativeTrustManager()
|
|
{
|
|
return new NativeTrustManager();
|
|
}
|
|
}
|
|
}
|