alpnProtocols property

List<String>? get alpnProtocols

Application-Layer Protocol Negotiation (ALPN) protocols to announce to the client. If not specified, no ALPN extension will be included in the TLS handshake.

Implementation

_i2.List<_i2.String>? get alpnProtocols => (_i3.getProperty(
      this,
      'alpnProtocols',
    ) as _i2.List?)
        ?.cast();
set alpnProtocols (List<String>? value)

Implementation

set alpnProtocols(_i2.List<_i2.String>? value) {
  _i3.setProperty(
    this,
    'alpnProtocols',
    value ?? _i6.undefined,
  );
}