ITlsTokenBindingFeature Interface¶
Provides information regarding TLS token binding parameters.
- Namespace
Microsoft.AspNetCore.Http.Features- Assemblies
- Microsoft.AspNetCore.Http.Features
Syntax¶
public interface ITlsTokenBindingFeature
-
interface
Microsoft.AspNetCore.Http.Features.ITlsTokenBindingFeature
Methods¶
-
GetProvidedTokenBindingId()¶ Gets the ‘provided’ token binding identifier associated with the request.
Return type: System.Byte<System.Byte>[] Returns: The token binding identifier, or null if the client did not supply a ‘provided’ token binding or valid proof of possession of the associated private key. The caller should treat this identifier as an opaque blob and should not try to parse it. byte[] GetProvidedTokenBindingId()
-
GetReferredTokenBindingId()¶ Gets the ‘referred’ token binding identifier associated with the request.
Return type: System.Byte<System.Byte>[] Returns: The token binding identifier, or null if the client did not supply a ‘referred’ token binding or valid proof of possession of the associated private key. The caller should treat this identifier as an opaque blob and should not try to parse it. byte[] GetReferredTokenBindingId()
-