I'm creating an in memory gRPC channel for use in testing. (This is in C#). This involves implementing a call invoker, that in turn involves implementing a server call context. One of the methods you need to implement has the following signature
protected abstract ContextPropagationToken CreatePropagationTokenCore(ContextPropagationOptions options);
Unfortunately, I can't see any way to create such a token. It turns out for my current purposes this isn't needed, but is there a way short of reflection to create or get such an object.