pub trait IWMSInternalAdminNetSource2_Impl: Sized {
    // Required methods
    fn SetCredentialsEx(
        &self,
        bstrrealm: &BSTR,
        bstrurl: &BSTR,
        fproxy: BOOL,
        bstrname: &BSTR,
        bstrpassword: &BSTR,
        fpersist: BOOL,
        fconfirmedgood: BOOL
    ) -> Result<()>;
    fn GetCredentialsEx(
        &self,
        bstrrealm: &BSTR,
        bstrurl: &BSTR,
        fproxy: BOOL,
        pdwurlpolicy: *mut NETSOURCE_URLCREDPOLICY_SETTINGS,
        pbstrname: *mut BSTR,
        pbstrpassword: *mut BSTR,
        pfconfirmedgood: *mut BOOL
    ) -> Result<()>;
    fn DeleteCredentialsEx(
        &self,
        bstrrealm: &BSTR,
        bstrurl: &BSTR,
        fproxy: BOOL
    ) -> Result<()>;
    fn FindProxyForURLEx(
        &self,
        bstrprotocol: &BSTR,
        bstrhost: &BSTR,
        bstrurl: &BSTR,
        pfproxyenabled: *mut BOOL,
        pbstrproxyserver: *mut BSTR,
        pdwproxyport: *mut u32,
        pdwproxycontext: *mut u32
    ) -> Result<()>;
}

Required Methods§

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

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

fn DeleteCredentialsEx( &self, bstrrealm: &BSTR, bstrurl: &BSTR, fproxy: BOOL ) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§