HttpsConnectionAdapterOptions.TlsClientHelloBytesCallback Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A callback to be invoked to get the TLS client hello bytes. Null by default. If you want to store the bytes from the ReadOnlySequence<T>, copy them into a buffer that you control rather than keeping a reference to the ReadOnlySequence<T> or ReadOnlyMemory<T> instances.
public Action<Microsoft.AspNetCore.Connections.ConnectionContext,System.Buffers.ReadOnlySequence<byte>>? TlsClientHelloBytesCallback { get; set; }
member this.TlsClientHelloBytesCallback : Action<Microsoft.AspNetCore.Connections.ConnectionContext, System.Buffers.ReadOnlySequence<byte>> with get, set
Public Property TlsClientHelloBytesCallback As Action(Of ConnectionContext, ReadOnlySequence(Of Byte))