pub trait IWebSocketInformation2_Impl: Sized + IWebSocketInformation_Impl {
    // Required methods
    fn ServerCertificate(&self) -> Result<Certificate>;
    fn ServerCertificateErrorSeverity(&self) -> Result<SocketSslErrorSeverity>;
    fn ServerCertificateErrors(
        &self
    ) -> Result<IVectorView<ChainValidationResult>>;
    fn ServerIntermediateCertificates(&self) -> Result<IVectorView<Certificate>>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§