Exemple #1
0
        public static FunctionDescriptionHandle GetFunctionDescription(ConnectionHandle connectionHandle,
                                                                       string functionName, out RfcErrorInfo errorInfo)
        {
            var ptr = Interopt.RfcGetFunctionDesc(connectionHandle.Ptr, functionName, out errorInfo);

            return(ptr == IntPtr.Zero ? null : new FunctionDescriptionHandle(ptr));
        }