pub trait ILanguageExceptionErrorInfo2_Impl: Sized + ILanguageExceptionErrorInfo_Impl {
    // Required methods
    fn GetPreviousLanguageExceptionErrorInfo(
        &self
    ) -> Result<ILanguageExceptionErrorInfo2>;
    fn CapturePropagationContext(
        &self,
        languageexception: Option<&IUnknown>
    ) -> Result<()>;
    fn GetPropagationContextHead(&self) -> Result<ILanguageExceptionErrorInfo2>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§