theLink 10.0
Loading...
Searching...
No Matches
MqContextC_Error_CS_API

MqContextC - move and copy an error from a contextMore...

+ Collaboration diagram for MqContextC_Error_CS_API:

Functions

MkErrorC csmqmsgque.MqContextC.ErrorFORMAT ()
  C#: MkErrorC fmtobj.ErrorFORMAT() C-API
helper used to access MkErrorDEFAULT from MqContextC
 
MkErrorE csmqmsgque.MqContextC.ErrorCopy (MqContextC sourceCtx)
  C#: MkErrorE targetCtx.ErrorCopy(MqContextC sourceCtx) C-API
copy a MkErrorS from the sourceCtx to the targetCtx
 
MkErrorE csmqmsgque.MqContextC.ErrorMove (MqContextC sourceCtx)
  C#: MkErrorE targetCtx.ErrorMove(MqContextC sourceCtx) C-API
move a MkErrorS from the sourceCtx to the targetCtx
 

Detailed Description

MqContextC - move and copy an error from a context

Function Documentation

◆ ErrorCopy()

MkErrorE csmqmsgque.MqContextC.ErrorCopy ( MqContextC sourceCtx)
inline

C#: MkErrorE targetCtx.ErrorCopy(MqContextC sourceCtx) C-API
copy a MkErrorS from the sourceCtx to the targetCtx

Definition at line 715 of file MqContextC.cs.

715 {
716 IntPtr sourceCtx_hdl = MqContextC.getOBJ("MqContextC",sourceCtx);
717 MkErrorE errVal = Mq.MqContextErrorCopy(mkrt, hdl, sourceCtx_hdl);
718 return errVal;
719 }
csmqmsgque.MqMsgque Mq
MkErrorE

◆ ErrorFORMAT()

MkErrorC csmqmsgque.MqContextC.ErrorFORMAT ( )
inline

C#: MkErrorC fmtobj.ErrorFORMAT() C-API
helper used to access MkErrorDEFAULT from MqContextC

Definition at line 707 of file MqContextC.cs.

707 {
708 IntPtr __retVal__L = Mq.MqContextErrorFORMAT(hdl_null_allow);
709 return MkErrorC.MkErrorC_ObjNew(__retVal__L);
710 }
static MkErrorC MkErrorC_ObjNew(IntPtr hdl)

◆ ErrorMove()

MkErrorE csmqmsgque.MqContextC.ErrorMove ( MqContextC sourceCtx)
inline

C#: MkErrorE targetCtx.ErrorMove(MqContextC sourceCtx) C-API
move a MkErrorS from the sourceCtx to the targetCtx

Definition at line 722 of file MqContextC.cs.

722 {
723 IntPtr sourceCtx_hdl = MqContextC.getOBJ("MqContextC",sourceCtx);
724 MkErrorE errVal = Mq.MqContextErrorMove(mkrt, hdl, sourceCtx_hdl);
725 return errVal;
726 }