pub trait ICertRequestD2_Impl: Sized + ICertRequestD_Impl {
    // Required methods
    fn Request2(
        &self,
        pwszauthority: &PCWSTR,
        dwflags: u32,
        pwszserialnumber: &PCWSTR,
        pdwrequestid: *mut u32,
        pdwdisposition: *mut u32,
        pwszattributes: &PCWSTR,
        pctbrequest: *const CERTTRANSBLOB,
        pctbfullresponse: *mut CERTTRANSBLOB,
        pctbencodedcert: *mut CERTTRANSBLOB,
        pctbdispositionmessage: *mut CERTTRANSBLOB,
    ) -> Result<()>;
    fn GetCAProperty(
        &self,
        pwszauthority: &PCWSTR,
        propid: i32,
        propindex: i32,
        proptype: i32,
    ) -> Result<CERTTRANSBLOB>;
    fn GetCAPropertyInfo(
        &self,
        pwszauthority: &PCWSTR,
        pcproperty: *mut i32,
        pctbpropinfo: *mut CERTTRANSBLOB,
    ) -> Result<()>;
    fn Ping2(&self, pwszauthority: &PCWSTR) -> Result<()>;
}

Required Methods§

fn Request2( &self, pwszauthority: &PCWSTR, dwflags: u32, pwszserialnumber: &PCWSTR, pdwrequestid: *mut u32, pdwdisposition: *mut u32, pwszattributes: &PCWSTR, pctbrequest: *const CERTTRANSBLOB, pctbfullresponse: *mut CERTTRANSBLOB, pctbencodedcert: *mut CERTTRANSBLOB, pctbdispositionmessage: *mut CERTTRANSBLOB, ) -> Result<()>

fn GetCAProperty( &self, pwszauthority: &PCWSTR, propid: i32, propindex: i32, proptype: i32, ) -> Result<CERTTRANSBLOB>

fn GetCAPropertyInfo( &self, pwszauthority: &PCWSTR, pcproperty: *mut i32, pctbpropinfo: *mut CERTTRANSBLOB, ) -> Result<()>

fn Ping2(&self, pwszauthority: &PCWSTR) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§