QuicConnectionOptions.StreamCapacityCallback Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Rappel facultatif appelé lorsque la nouvelle limite de flux est libérée par l’homologue. Correspond à la réception d’un cadre MAX_STREAMS.
Les valeurs de rappel représentent des incréments de limites de flux, par exemple : la limite actuelle est de 10 flux bidirectionnels, les arguments de rappel informent 5 flux bidirectionnels supplémentaires => 15 flux bidirectionnels peuvent être ouverts au total à l’instant.
La capacité initiale est signalée avec le premier appel du rappel qui peut se produire avant la remise de l’instance de QuicConnection via ConnectAsync(QuicClientConnectionOptions, CancellationToken) ou AcceptConnectionAsync(CancellationToken).
public:
property Action<System::Net::Quic::QuicConnection ^, System::Net::Quic::QuicStreamCapacityChangedArgs> ^ StreamCapacityCallback { Action<System::Net::Quic::QuicConnection ^, System::Net::Quic::QuicStreamCapacityChangedArgs> ^ get(); void set(Action<System::Net::Quic::QuicConnection ^, System::Net::Quic::QuicStreamCapacityChangedArgs> ^ value); };
public Action<System.Net.Quic.QuicConnection,System.Net.Quic.QuicStreamCapacityChangedArgs>? StreamCapacityCallback { get; set; }
member this.StreamCapacityCallback : Action<System.Net.Quic.QuicConnection, System.Net.Quic.QuicStreamCapacityChangedArgs> with get, set
Public Property StreamCapacityCallback As Action(Of QuicConnection, QuicStreamCapacityChangedArgs)