John Murray
John Murray
I have a similar situation. I want to do only IpThrottling, i.e. you get throttled based on all requests from an IP, but have a list of white-listed endpoints.
FYI, my workaround is to not use a whitelist, but to use EndpointRules (or IpRules) with very high limits.
Installing VS for Mac doesn't solve it either.
As far as I know, no. Our workaround is to call the following before calling `AuthenticationClient` methods: ``` ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls; ```