pub trait IWSDHttpMessageParameters_Impl: Sized + IWSDMessageParameters_Impl {
    // Required methods
    fn SetInboundHttpHeaders(&self, pszheaders: &PCWSTR) -> Result<()>;
    fn GetInboundHttpHeaders(&self) -> Result<PCWSTR>;
    fn SetOutboundHttpHeaders(&self, pszheaders: &PCWSTR) -> Result<()>;
    fn GetOutboundHttpHeaders(&self) -> Result<PCWSTR>;
    fn SetID(&self, pszid: &PCWSTR) -> Result<()>;
    fn GetID(&self) -> Result<PCWSTR>;
    fn SetContext(&self, pcontext: Option<&IUnknown>) -> Result<()>;
    fn GetContext(&self) -> Result<IUnknown>;
    fn Clear(&self) -> Result<()>;
}

Required Methods§

fn SetInboundHttpHeaders(&self, pszheaders: &PCWSTR) -> Result<()>

fn GetInboundHttpHeaders(&self) -> Result<PCWSTR>

fn SetOutboundHttpHeaders(&self, pszheaders: &PCWSTR) -> Result<()>

fn GetOutboundHttpHeaders(&self) -> Result<PCWSTR>

fn SetID(&self, pszid: &PCWSTR) -> Result<()>

fn GetID(&self) -> Result<PCWSTR>

fn SetContext(&self, pcontext: Option<&IUnknown>) -> Result<()>

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

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

Object Safety§

This trait is not object safe.

Implementors§