pub trait ICertificateEnrollmentServerSetup_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn ErrorString(&self) -> Result<BSTR>;
    fn InitializeInstallDefaults(&self) -> Result<()>;
    fn GetProperty(&self, propertyid: CESSetupProperty) -> Result<VARIANT>;
    fn SetProperty(
        &self,
        propertyid: CESSetupProperty,
        ppropertyvalue: *const VARIANT,
    ) -> Result<()>;
    fn SetApplicationPoolCredentials(
        &self,
        bstrusername: &BSTR,
        bstrpassword: &BSTR,
    ) -> Result<()>;
    fn Install(&self) -> Result<()>;
    fn UnInstall(
        &self,
        pcaconfig: *const VARIANT,
        pauthentication: *const VARIANT,
    ) -> Result<()>;
}

Required Methods§

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

fn InitializeInstallDefaults(&self) -> Result<()>

fn GetProperty(&self, propertyid: CESSetupProperty) -> Result<VARIANT>

fn SetProperty( &self, propertyid: CESSetupProperty, ppropertyvalue: *const VARIANT, ) -> Result<()>

fn SetApplicationPoolCredentials( &self, bstrusername: &BSTR, bstrpassword: &BSTR, ) -> Result<()>

fn Install(&self) -> Result<()>

fn UnInstall( &self, pcaconfig: *const VARIANT, pauthentication: *const VARIANT, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§