certificateAuthorities property

List<ByteBuffer> get certificateAuthorities

List of distinguished names of certificate authorities allowed by the server. Each entry must be a DER-encoded X.509 DistinguishedName.

Implementation

List<ByteBuffer> get certificateAuthorities =>
    _wrapped.certificateAuthorities.toDart
        .cast<JSArrayBuffer>()
        .map((e) => e.toDart)
        .toList();
set certificateAuthorities (List<ByteBuffer> v)

Implementation

set certificateAuthorities(List<ByteBuffer> v) {
  _wrapped.certificateAuthorities = v.toJSArray((e) => e.toJS);
}