示例#1
0
文件: Api.cs 项目: fw2568/YaNco
        public static TypeDescriptionHandle GetTypeDescription(IDataContainerHandle dataContainer,
                                                               out RfcErrorInfo errorInfo)
        {
            var ptr = Interopt.RfcDescribeType(dataContainer.Ptr, out errorInfo);

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