コード例 #1
0
 private static extern RfcResultCodes RfcGetFieldDescByName(IntPtr typeDescHandle, string name, out RfcFieldDescription fieldDesc, out RfcErrorInfo errorInfo);
コード例 #2
0
 public RfcResultCodes DestroyTransaction(IntPtr tHandle, out RfcErrorInfo errorInfo) =>
 RfcDestroyTransaction(tHandle, out errorInfo);
コード例 #3
0
 private static extern RfcResultCodes RfcGetTable(IntPtr dataHandle, string name, out IntPtr tableHandle,
                                                  out RfcErrorInfo errorInfo);
コード例 #4
0
 public RfcResultCodes InvokeInTransaction(IntPtr tHandle, IntPtr funcHandle, out RfcErrorInfo errorInfo) =>
 RfcInvokeInTransaction(tHandle, funcHandle, out errorInfo);
コード例 #5
0
 public RfcResultCodes ConfirmTransaction(IntPtr tHandle, out RfcErrorInfo errorInfo) =>
 RfcConfirmTransaction(tHandle, out errorInfo);
コード例 #6
0
 public RfcResultCodes GetTransactionId(IntPtr rfcHandle, out string tid, out RfcErrorInfo errorInfo) =>
 RfcGetTransactionID(rfcHandle, out tid, out errorInfo);
コード例 #7
0
 public IntPtr CreateTransaction(IntPtr rfcHandle, string tid, string queueName, out RfcErrorInfo errorInfo) =>
 RfcCreateTransaction(rfcHandle, tid, queueName, out errorInfo);
コード例 #8
0
 private static extern RfcResultCodes RfcGetParameterDescByName(IntPtr funcDescHandle, string name, out RfcParameterDescription paramDesc, out RfcErrorInfo errorInfo);
コード例 #9
0
 public RfcResultCodes GetParameterDescByName(IntPtr funcDescHandle, string name, out RfcParameterDescription paramDesc, out RfcErrorInfo errorInfo)
 => RfcGetParameterDescByName(funcDescHandle, name, out paramDesc, out errorInfo);
コード例 #10
0
 private static extern RfcResultCodes RfcGetParameterDescByIndex(IntPtr funcDescHandle, int index, out RfcParameterDescription paramDesc, out RfcErrorInfo errorInfo);
コード例 #11
0
 public RfcResultCodes GetParameterDescByIndex(IntPtr funcDescHandle, int index, out RfcParameterDescription paramDesc, out RfcErrorInfo errorInfo)
 => RfcGetParameterDescByIndex(funcDescHandle, index, out paramDesc, out errorInfo);
コード例 #12
0
 public RfcResultCodes GetParameterCount(IntPtr funcDescHandle, out int count, out RfcErrorInfo errorInfo)
 => RfcGetParameterCount(funcDescHandle, out count, out errorInfo);
コード例 #13
0
 private static extern RfcResultCodes RfcGetParameterCount(IntPtr funcDescHandle, out int count, out RfcErrorInfo errorInfo);
コード例 #14
0
 public RfcResultCodes GetFieldDescByName(IntPtr typeDescHandle, string name, out RfcFieldDescription fieldDesc,
                                          out RfcErrorInfo errorInfo)
 => RfcGetFieldDescByName(typeDescHandle, name, out fieldDesc, out errorInfo);
コード例 #15
0
 public RfcResultCodes Invoke(IntPtr rfcHandle, IntPtr funcHandle, out RfcErrorInfo errorInfo)
 => RfcInvoke(rfcHandle, funcHandle, out errorInfo);
コード例 #16
0
 private static extern IntPtr RfcGetFunctionDesc(IntPtr rfcHandle, string funcName, out RfcErrorInfo errorInfo);
コード例 #17
0
 private static extern RfcResultCodes RfcGetTransactionID(IntPtr rfcHandle, out string tid, out RfcErrorInfo errorInfo);
コード例 #18
0
 public IntPtr GetFunctionDesc(IntPtr rfcHandle, string funcName, out RfcErrorInfo errorInfo)
 => RfcGetFunctionDesc(rfcHandle, funcName, out errorInfo);
コード例 #19
0
 private static extern IntPtr RfcCreateTransaction(IntPtr rfcHandle, string tid, string queueName, out RfcErrorInfo errorInfo);
コード例 #20
0
 private static extern IntPtr RfcCreateFunction(IntPtr funcDescHandle, out RfcErrorInfo errorInfo);
コード例 #21
0
 private static extern RfcResultCodes RfcInvokeInTransaction(IntPtr tHandle, IntPtr funcHandle, out RfcErrorInfo errorInfo);
コード例 #22
0
 public IntPtr CreateFunction(IntPtr funcDescHandle, out RfcErrorInfo errorInfo)
 => RfcCreateFunction(funcDescHandle, out errorInfo);
コード例 #23
0
 public RfcResultCodes SubmitTransaction(IntPtr tHandle, out RfcErrorInfo errorInfo) =>
 RfcSubmitTransaction(tHandle, out errorInfo);
コード例 #24
0
 private static extern RfcResultCodes RfcDestroyFunction(IntPtr funcHandle, out RfcErrorInfo errorInfo);
コード例 #25
0
 private static extern RfcResultCodes RfcDestroyTransaction(IntPtr tHandle, out RfcErrorInfo errorInfo);
コード例 #26
0
 public RfcResultCodes DestroyFunction(IntPtr funcHandle, out RfcErrorInfo errorInfo)
 => RfcDestroyFunction(funcHandle, out errorInfo);
コード例 #27
0
 private static extern RfcResultCodes RfcGetString(IntPtr dataHandle, string name, char[] stringBuffer,
                                                   uint bufferLength, out uint stringLength, out RfcErrorInfo errorInfo);
コード例 #28
0
 private static extern RfcResultCodes RfcInvoke(IntPtr rfcHandle, IntPtr funcHandle, out RfcErrorInfo errorInfo);
コード例 #29
0
 public RfcResultCodes GetTable(IntPtr dataHandle, string name, out IntPtr tableHandle,
                                out RfcErrorInfo errorInfo)
 => RfcGetTable(dataHandle, name, out tableHandle, out errorInfo);
コード例 #30
0
 public RfcResultCodes GetFieldDescByIndex(IntPtr typeDescHandle, int index, out RfcFieldDescription fieldDesc,
                                           out RfcErrorInfo errorInfo)
 => RfcGetFieldDescByIndex(typeDescHandle, index, out fieldDesc, out errorInfo);