pub trait IX509SCEPEnrollment2_Impl: Sized + IX509SCEPEnrollment_Impl {
    // Required methods
    fn CreateChallengeAnswerMessage(
        &self,
        encoding: EncodingType
    ) -> Result<BSTR>;
    fn ProcessResponseMessage2(
        &self,
        flags: X509SCEPProcessMessageFlags,
        strresponse: &BSTR,
        encoding: EncodingType
    ) -> Result<X509SCEPDisposition>;
    fn ResultMessageText(&self) -> Result<BSTR>;
    fn DelayRetry(&self) -> Result<DelayRetryAction>;
    fn ActivityId(&self) -> Result<BSTR>;
    fn SetActivityId(&self, value: &BSTR) -> Result<()>;
}

Required Methods§

fn CreateChallengeAnswerMessage(&self, encoding: EncodingType) -> Result<BSTR>

fn ProcessResponseMessage2( &self, flags: X509SCEPProcessMessageFlags, strresponse: &BSTR, encoding: EncodingType ) -> Result<X509SCEPDisposition>

fn ResultMessageText(&self) -> Result<BSTR>

fn DelayRetry(&self) -> Result<DelayRetryAction>

fn ActivityId(&self) -> Result<BSTR>

fn SetActivityId(&self, value: &BSTR) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§