runtime: Port System.Net.TransportContext missing members
public abstract class TransportContext {
public virtual IEnumerable<TokenBinding> GetTlsTokenBindings();
}
About this issue
- Original URL
- State: closed
- Created 8 years ago
- Comments: 24 (24 by maintainers)
Per discussion, we will cut this.
I’ll file a separate issue against netstandard2.0.
Another option: Make the relevant APIs virtual and return a derived class that inherits from
System.Net.Primitives
/TokenBinding
and is implemented in the internalSystem.Net.HttpListener
/System.Net.Internals.TokenBinding
. The virtual modifier will be required forGetRawTokenBindingId
andBindingType
.