diff --git a/sdk/core/Azure.Core/src/Pipeline/ServicePointHelpers.cs b/sdk/core/Azure.Core/src/Pipeline/ServicePointHelpers.cs index 5cb0215f81db..2b81fbe53b6e 100644 --- a/sdk/core/Azure.Core/src/Pipeline/ServicePointHelpers.cs +++ b/sdk/core/Azure.Core/src/Pipeline/ServicePointHelpers.cs @@ -90,6 +90,11 @@ public static void SetLimits(HttpMessageHandler messageHandler) // Some platforms might throw NotSupportedException // when accessing handler options } + catch (NotImplementedException) + { + // Some platforms (like Unity) might throw NotImplementedException + // when accessing handler options + } } } }