theLink 10.0
Loading...
Searching...
No Matches
MqMsgque_Enum_CS_API

MqMsgque PACKAGE - enum definition … More...

+ Collaboration diagram for MqMsgque_Enum_CS_API:

Functions

static MqIdentE csmqmsgque.MqMsgque.IdentE_FromInt (int value)
  C#: [static] MqIdentE IdentE_FromInt(int value) C-API
return the MqIdentE from integer …
 
static MqSlaveE csmqmsgque.MqMsgque.SlaveE_FromInt (int value)
  C#: [static] MqSlaveE SlaveE_FromInt(int value) C-API
return the MqSlaveE from integer …
 
static MqStartE csmqmsgque.MqMsgque.StartE_FromInt (int value)
  C#: [static] MqStartE StartE_FromInt(int value) C-API
return the MqStartE from integer …
 
static MqStatusIsEF csmqmsgque.MqMsgque.StatusIsEF_FromInt (int value)
  C#: [static] MqStatusIsEF StatusIsEF_FromInt(int value) C-API
return the MqStatusIsEF from integer …
 
static MqWaitOnEventE csmqmsgque.MqMsgque.WaitOnEventE_FromInt (int value)
  C#: [static] MqWaitOnEventE WaitOnEventE_FromInt(int value) C-API
return the MqWaitOnEventE from integer …
 
static int csmqmsgque.MqMsgque.IdentE_ToInt (MqIdentE value)
  C#: [static] int IdentE_ToInt(MqIdentE value) C-API
return the MqIdentE as integer …
 
static string csmqmsgque.MqMsgque.IdentE_ToString (MqIdentE value)
  C#: [static] string IdentE_ToString(MqIdentE value) C-API
return the MqIdentE as string …
 
static int csmqmsgque.MqMsgque.SlaveE_ToInt (MqSlaveE value)
  C#: [static] int SlaveE_ToInt(MqSlaveE value) C-API
return the MqSlaveE as integer …
 
static string csmqmsgque.MqMsgque.SlaveE_ToString (MqSlaveE value)
  C#: [static] string SlaveE_ToString(MqSlaveE value) C-API
return the MqSlaveE as string …
 
static int csmqmsgque.MqMsgque.StartE_ToInt (MqStartE value)
  C#: [static] int StartE_ToInt(MqStartE value) C-API
return the MqStartE as integer …
 
static string csmqmsgque.MqMsgque.StartE_ToString (MqStartE value)
  C#: [static] string StartE_ToString(MqStartE value) C-API
return the MqStartE as string …
 
static int csmqmsgque.MqMsgque.StatusIsEF_ToInt (MqStatusIsEF value)
  C#: [static] int StatusIsEF_ToInt(MqStatusIsEF value) C-API
return the MqStatusIsEF as integer …
 
static string csmqmsgque.MqMsgque.StatusIsEF_ToString (MqStatusIsEF value)
  C#: [static] string StatusIsEF_ToString(MqStatusIsEF value) C-API
return the MqStatusIsEF as string …
 
static int csmqmsgque.MqMsgque.WaitOnEventE_ToInt (MqWaitOnEventE value)
  C#: [static] int WaitOnEventE_ToInt(MqWaitOnEventE value) C-API
return the MqWaitOnEventE as integer …
 
static string csmqmsgque.MqMsgque.WaitOnEventE_ToString (MqWaitOnEventE value)
  C#: [static] string WaitOnEventE_ToString(MqWaitOnEventE value) C-API
return the MqWaitOnEventE as string …
 

Detailed Description

MqMsgque PACKAGE - enum definition …

read more at: MkKernel_Enum_C_API

Function Documentation

◆ IdentE_FromInt()

static MqIdentE csmqmsgque.MqMsgque.IdentE_FromInt ( int value)
inlinestatic

C#: [static] MqIdentE IdentE_FromInt(int value) C-API
return the MqIdentE from integer …

Definition at line 178 of file LibMqMsgque.cs.

178 {
179 MqIdentE value_out;
180 MkErrorE errVal = Mq.MqIdentE_FromInt(value, out value_out);
181 if (errVal > MkErrorE.CONTINUE) MkErrorC.Check(errVal);
182 return value_out;
183 }
static void Check(IntPtr ctx, MkErrorE err)
MkErrorE
MqIdentE
→ C-API: MqIdentE → C-API: MqIdentE

◆ IdentE_ToInt()

static int csmqmsgque.MqMsgque.IdentE_ToInt ( MqIdentE value)
inlinestatic

C#: [static] int IdentE_ToInt(MqIdentE value) C-API
return the MqIdentE as integer …

Definition at line 220 of file LibMqMsgque.cs.

220 {
221 Int32 __retVal__L = Mq.MqIdentE_ToInt(value);
222 return __retVal__L;
223 }

◆ IdentE_ToString()

static string csmqmsgque.MqMsgque.IdentE_ToString ( MqIdentE value)
inlinestatic

C#: [static] string IdentE_ToString(MqIdentE value) C-API
return the MqIdentE as string …

Definition at line 226 of file LibMqMsgque.cs.

226 {
227 IntPtr __retVal__L = Mq.MqIdentE_ToString(value);
228 return Marshal.PtrToStringAnsi(__retVal__L);
229 }

◆ SlaveE_FromInt()

static MqSlaveE csmqmsgque.MqMsgque.SlaveE_FromInt ( int value)
inlinestatic

C#: [static] MqSlaveE SlaveE_FromInt(int value) C-API
return the MqSlaveE from integer …

Definition at line 186 of file LibMqMsgque.cs.

186 {
187 MqSlaveE value_out;
188 MkErrorE errVal = Mq.MqSlaveE_FromInt(value, out value_out);
189 if (errVal > MkErrorE.CONTINUE) MkErrorC.Check(errVal);
190 return value_out;
191 }
MqSlaveE
→ C-API: MqSlaveE → C-API: MqSlaveE

◆ SlaveE_ToInt()

static int csmqmsgque.MqMsgque.SlaveE_ToInt ( MqSlaveE value)
inlinestatic

C#: [static] int SlaveE_ToInt(MqSlaveE value) C-API
return the MqSlaveE as integer …

Definition at line 232 of file LibMqMsgque.cs.

232 {
233 Int32 __retVal__L = Mq.MqSlaveE_ToInt(value);
234 return __retVal__L;
235 }

◆ SlaveE_ToString()

static string csmqmsgque.MqMsgque.SlaveE_ToString ( MqSlaveE value)
inlinestatic

C#: [static] string SlaveE_ToString(MqSlaveE value) C-API
return the MqSlaveE as string …

Definition at line 238 of file LibMqMsgque.cs.

238 {
239 IntPtr __retVal__L = Mq.MqSlaveE_ToString(value);
240 return Marshal.PtrToStringAnsi(__retVal__L);
241 }

◆ StartE_FromInt()

static MqStartE csmqmsgque.MqMsgque.StartE_FromInt ( int value)
inlinestatic

C#: [static] MqStartE StartE_FromInt(int value) C-API
return the MqStartE from integer …

Definition at line 194 of file LibMqMsgque.cs.

194 {
195 MqStartE value_out;
196 MkErrorE errVal = Mq.MqStartE_FromInt(value, out value_out);
197 if (errVal > MkErrorE.CONTINUE) MkErrorC.Check(errVal);
198 return value_out;
199 }
MqStartE
→ C-API: MqStartE → C-API: MqStartE

◆ StartE_ToInt()

static int csmqmsgque.MqMsgque.StartE_ToInt ( MqStartE value)
inlinestatic

C#: [static] int StartE_ToInt(MqStartE value) C-API
return the MqStartE as integer …

Definition at line 244 of file LibMqMsgque.cs.

244 {
245 Int32 __retVal__L = Mq.MqStartE_ToInt(value);
246 return __retVal__L;
247 }

◆ StartE_ToString()

static string csmqmsgque.MqMsgque.StartE_ToString ( MqStartE value)
inlinestatic

C#: [static] string StartE_ToString(MqStartE value) C-API
return the MqStartE as string …

Definition at line 250 of file LibMqMsgque.cs.

250 {
251 IntPtr __retVal__L = Mq.MqStartE_ToString(value);
252 return Marshal.PtrToStringAnsi(__retVal__L);
253 }

◆ StatusIsEF_FromInt()

static MqStatusIsEF csmqmsgque.MqMsgque.StatusIsEF_FromInt ( int value)
inlinestatic

C#: [static] MqStatusIsEF StatusIsEF_FromInt(int value) C-API
return the MqStatusIsEF from integer …

Definition at line 202 of file LibMqMsgque.cs.

202 {
203 MqStatusIsEF value_out;
204 MkErrorE errVal = Mq.MqStatusIsEF_FromInt(value, out value_out);
205 if (errVal > MkErrorE.CONTINUE) MkErrorC.Check(errVal);
206 return value_out;
207 }
MqStatusIsEF
→ C-API: MqStatusIsEF → C-API: MqStatusIsEF

◆ StatusIsEF_ToInt()

static int csmqmsgque.MqMsgque.StatusIsEF_ToInt ( MqStatusIsEF value)
inlinestatic

C#: [static] int StatusIsEF_ToInt(MqStatusIsEF value) C-API
return the MqStatusIsEF as integer …

Definition at line 256 of file LibMqMsgque.cs.

256 {
257 Int32 __retVal__L = Mq.MqStatusIsEF_ToInt(value);
258 return __retVal__L;
259 }

◆ StatusIsEF_ToString()

static string csmqmsgque.MqMsgque.StatusIsEF_ToString ( MqStatusIsEF value)
inlinestatic

C#: [static] string StatusIsEF_ToString(MqStatusIsEF value) C-API
return the MqStatusIsEF as string …

Definition at line 262 of file LibMqMsgque.cs.

262 {
263 IntPtr __retVal__L = Mq.MqStatusIsEF_ToString(value);
264 return Marshal.PtrToStringAnsi(__retVal__L);
265 }

◆ WaitOnEventE_FromInt()

static MqWaitOnEventE csmqmsgque.MqMsgque.WaitOnEventE_FromInt ( int value)
inlinestatic

C#: [static] MqWaitOnEventE WaitOnEventE_FromInt(int value) C-API
return the MqWaitOnEventE from integer …

Definition at line 210 of file LibMqMsgque.cs.

210 {
211 MqWaitOnEventE value_out;
212 MkErrorE errVal = Mq.MqWaitOnEventE_FromInt(value, out value_out);
213 if (errVal > MkErrorE.CONTINUE) MkErrorC.Check(errVal);
214 return value_out;
215 }
MqWaitOnEventE
→ C-API: MqWaitOnEventE → C-API: MqWaitOnEventE

◆ WaitOnEventE_ToInt()

static int csmqmsgque.MqMsgque.WaitOnEventE_ToInt ( MqWaitOnEventE value)
inlinestatic

C#: [static] int WaitOnEventE_ToInt(MqWaitOnEventE value) C-API
return the MqWaitOnEventE as integer …

Definition at line 268 of file LibMqMsgque.cs.

268 {
269 Int32 __retVal__L = Mq.MqWaitOnEventE_ToInt(value);
270 return __retVal__L;
271 }

◆ WaitOnEventE_ToString()

static string csmqmsgque.MqMsgque.WaitOnEventE_ToString ( MqWaitOnEventE value)
inlinestatic

C#: [static] string WaitOnEventE_ToString(MqWaitOnEventE value) C-API
return the MqWaitOnEventE as string …

Definition at line 274 of file LibMqMsgque.cs.

274 {
275 IntPtr __retVal__L = Mq.MqWaitOnEventE_ToString(value);
276 return Marshal.PtrToStringAnsi(__retVal__L);
277 }