pub trait IWMSInternalAdminNetSource3_Impl: Sized + IWMSInternalAdminNetSource2_Impl {
    // Required methods
    fn GetNetSourceCreator2(&self) -> Result<IUnknown>;
    fn FindProxyForURLEx2(
        &self,
        bstrprotocol: &BSTR,
        bstrhost: &BSTR,
        bstrurl: &BSTR,
        pfproxyenabled: *mut BOOL,
        pbstrproxyserver: *mut BSTR,
        pdwproxyport: *mut u32,
        pqwproxycontext: *mut u64
    ) -> Result<()>;
    fn RegisterProxyFailure2(
        &self,
        hrparam: HRESULT,
        qwproxycontext: u64
    ) -> Result<()>;
    fn ShutdownProxyContext2(&self, qwproxycontext: u64) -> Result<()>;
    fn IsUsingIE2(&self, qwproxycontext: u64) -> Result<BOOL>;
    fn SetCredentialsEx2(
        &self,
        bstrrealm: &BSTR,
        bstrurl: &BSTR,
        fproxy: BOOL,
        bstrname: &BSTR,
        bstrpassword: &BSTR,
        fpersist: BOOL,
        fconfirmedgood: BOOL,
        fcleartextauthentication: BOOL
    ) -> Result<()>;
    fn GetCredentialsEx2(
        &self,
        bstrrealm: &BSTR,
        bstrurl: &BSTR,
        fproxy: BOOL,
        fcleartextauthentication: BOOL,
        pdwurlpolicy: *mut NETSOURCE_URLCREDPOLICY_SETTINGS,
        pbstrname: *mut BSTR,
        pbstrpassword: *mut BSTR,
        pfconfirmedgood: *mut BOOL
    ) -> Result<()>;
}

Required Methods§

fn GetNetSourceCreator2(&self) -> Result<IUnknown>

fn FindProxyForURLEx2( &self, bstrprotocol: &BSTR, bstrhost: &BSTR, bstrurl: &BSTR, pfproxyenabled: *mut BOOL, pbstrproxyserver: *mut BSTR, pdwproxyport: *mut u32, pqwproxycontext: *mut u64 ) -> Result<()>

fn RegisterProxyFailure2( &self, hrparam: HRESULT, qwproxycontext: u64 ) -> Result<()>

fn ShutdownProxyContext2(&self, qwproxycontext: u64) -> Result<()>

fn IsUsingIE2(&self, qwproxycontext: u64) -> Result<BOOL>

fn SetCredentialsEx2( &self, bstrrealm: &BSTR, bstrurl: &BSTR, fproxy: BOOL, bstrname: &BSTR, bstrpassword: &BSTR, fpersist: BOOL, fconfirmedgood: BOOL, fcleartextauthentication: BOOL ) -> Result<()>

fn GetCredentialsEx2( &self, bstrrealm: &BSTR, bstrurl: &BSTR, fproxy: BOOL, fcleartextauthentication: BOOL, pdwurlpolicy: *mut NETSOURCE_URLCREDPOLICY_SETTINGS, pbstrname: *mut BSTR, pbstrpassword: *mut BSTR, pfconfirmedgood: *mut BOOL ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§