File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ public static class GlobalSettings
22
22
private static bool nativeLibraryPathLocked ;
23
23
private static string nativeLibraryDefaultPath ;
24
24
25
- private static bool useManagedHttpSmartSubtransport ;
25
+ private static bool useManagedHttpSmartSubtransport = true ;
26
26
27
27
internal class SmartSubtransportData
28
28
{
@@ -541,11 +541,11 @@ public static string GetUserAgent()
541
541
}
542
542
543
543
/// <summary>
544
- /// Enables the managed http implementation. This is enabled autmatically on Linux, so this method is only needed when running on Windows or macOS.
544
+ /// Enables the native http implementation. This can only be enabled on Windows or macOS.
545
545
/// </summary>
546
- public static void UseManagedHttpSmartSubtransport ( )
546
+ public static void UseNativeHttpTransport ( )
547
547
{
548
- useManagedHttpSmartSubtransport = true ;
548
+ useManagedHttpSmartSubtransport = false ;
549
549
}
550
550
}
551
551
}
You can’t perform that action at this time.
0 commit comments