theLink 10.0
Loading...
Searching...
No Matches
MqFactoryC_Get_CS_API

MqFactoryC - various functions to 'get' data out of a factoryMore...

+ Collaboration diagram for MqFactoryC_Get_CS_API:

Functions

static MqFactoryC csmqmsgque.MqFactoryC.Get (string ident="")
  C#: [static] MqFactoryC MqFactoryC.Get(string ident = "") C-API
return the MqFactoryC
 
static MqFactoryC csmqmsgque.MqFactoryC.GetCalled (string ident="")
  C#: [static] MqFactoryC MqFactoryC.GetCalled(string ident = "") C-API
returns the MqFactoryC identified by ident
 
static MqFactoryC csmqmsgque.MqFactoryC.GetCalled (MkBufferListC largs)
  C#: [static] MqFactoryC MqFactoryC.GetCalled(MkBufferListC largs) C-API
returns the MqFactoryC identified as first argument in the largs MkBufferListC
 
string csmqmsgque.MqFactoryC.GetOriginalIdent ()
  C#: string fct.GetOriginalIdent() C-API
helper function to return MqFactoryS.originalIdent
 

Detailed Description

MqFactoryC - various functions to 'get' data out of a factory

Function Documentation

◆ Get()

static MqFactoryC csmqmsgque.MqFactoryC.Get ( string ident = "")
inlinestatic

C#: [static] MqFactoryC MqFactoryC.Get(string ident = "") C-API
return the MqFactoryC

Definition at line 231 of file MqFactoryC.cs.

231 {
232 IntPtr ident_cstr = Marshal.StringToHGlobalAnsi(ident);
233 IntPtr __retVal__L = Mq.MqFactoryGet(IntPtr.Zero, ident_cstr);
234 Marshal.FreeHGlobal(ident_cstr);
235 return MqFactoryC.MqFactoryC_ObjNew(__retVal__L);
236 }
csmqmsgque.MqMsgque Mq

◆ GetCalled() [1/2]

static MqFactoryC csmqmsgque.MqFactoryC.GetCalled ( MkBufferListC largs)
inlinestatic

C#: [static] MqFactoryC MqFactoryC.GetCalled(MkBufferListC largs) C-API
returns the MqFactoryC identified as first argument in the largs MkBufferListC

Definition at line 247 of file MqFactoryC.cs.

247 {
248 IntPtr largs_hdl = MkBufferListC.getOBJ("MkBufferListC",largs);
249 IntPtr __retVal__L = Mq.MqFactoryGetCalledL(IntPtr.Zero, largs_hdl);
250 return MqFactoryC.MqFactoryC_ObjNew(__retVal__L);
251 }

◆ GetCalled() [2/2]

static MqFactoryC csmqmsgque.MqFactoryC.GetCalled ( string ident = "")
inlinestatic

C#: [static] MqFactoryC MqFactoryC.GetCalled(string ident = "") C-API
returns the MqFactoryC identified by ident

Definition at line 239 of file MqFactoryC.cs.

239 {
240 IntPtr ident_cstr = Marshal.StringToHGlobalAnsi(ident);
241 IntPtr __retVal__L = Mq.MqFactoryGetCalled(IntPtr.Zero, ident_cstr);
242 Marshal.FreeHGlobal(ident_cstr);
243 return MqFactoryC.MqFactoryC_ObjNew(__retVal__L);
244 }

◆ GetOriginalIdent()

string csmqmsgque.MqFactoryC.GetOriginalIdent ( )
inline

C#: string fct.GetOriginalIdent() C-API
helper function to return MqFactoryS.originalIdent

Definition at line 256 of file MqFactoryC.cs.

256 {
257 IntPtr __retVal__L = Mq.MqFactoryGetOriginalIdent(hdl);
258 return Marshal.PtrToStringAnsi(__retVal__L);
259 }