HttpsConnectionAdapterOptions.TlsClientHelloBytesCallback プロパティ

定義

注意事項

Use ListenOptions.UseTlsClientHelloListener() instead.

TLS クライアントの hello バイトを取得するために呼び出されるコールバック。 クライアント hello バイトは引き続きレコード層フラグメントにラップされます。 既定値は Null です。 ReadOnlySequence<T>のバイトを格納する場合は、ReadOnlySequence<T>またはReadOnlyMemory<T>インスタンスへの参照を保持するのではなく、それらを制御するバッファーにコピーします。

public Action<Microsoft.AspNetCore.Connections.ConnectionContext,System.Buffers.ReadOnlySequence<byte>>? TlsClientHelloBytesCallback { get; set; }
[System.Obsolete("Use ListenOptions.UseTlsClientHelloListener() instead.", false)]
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
[<System.Obsolete("Use ListenOptions.UseTlsClientHelloListener() instead.", false)>]
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))

プロパティ値

属性

注釈

クライアント hello が複数のレコード フラグメントにまたがる場合、このコールバックは最初のフラグメントのみを取得します。 UseTlsClientHelloListener(ListenOptions, Action<ConnectionContext,ReadOnlySequence<Byte>>, Nullable<TimeSpan>) を代わりに使用します。

適用対象