How do I fix the exception:
No address resolver configured for the scheme 'wss'.?
(Documentation for the service specifically requires the wss prefix)
var channel = GrpcChannel.ForAddress("wss://someservice.com:443", new GrpcChannelOptions()
{
});
Here is the GrpcChannel source code snippet that throws the exception:

I solved it with a custom resolver and resolver factory.