当前位置: 首页>>代码示例>>C#>>正文


C# grn_ctx类代码示例

本文整理汇总了C#中grn_ctx的典型用法代码示例。如果您正苦于以下问题:C# grn_ctx类的具体用法?C# grn_ctx怎么用?C# grn_ctx使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


grn_ctx类属于命名空间,在下文中一共展示了grn_ctx类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: grn_expr_syntax_escape_query

 public static extern  grn_rc grn_expr_syntax_escape_query(ref grn_ctx ctx, [InAttribute()] [MarshalAsAttribute(UnmanagedType.LPStr)] string query, int query_size, ref grn_table_cursor escaped_query) ;
开发者ID:cosmo0920,项目名称:GrnSharp,代码行数:1,代码来源:NativeMethods.cs

示例2: grn_ctx_fin

 public static extern GroongaResultCode grn_ctx_fin(ref grn_ctx ctx);
开发者ID:mashiro,项目名称:tig-groonga-logger,代码行数:1,代码来源:Api.cs

示例3: grn_ctx_recv

 public static extern UInt32 grn_ctx_recv(ref grn_ctx ctx, out IntPtr str, out UInt32 str_len, out Int32 flags);
开发者ID:mashiro,项目名称:tig-groonga-logger,代码行数:1,代码来源:Api.cs

示例4: grn_ctx_recv

 public static extern  uint grn_ctx_recv(ref grn_ctx ctx, ref System.IntPtr str, ref uint str_len, ref int flags) ;
开发者ID:cosmo0920,项目名称:GrnSharp,代码行数:1,代码来源:NativeMethods.cs

示例5: grn_dat_remove

 public static extern  grn_rc grn_dat_remove(ref grn_ctx ctx, [InAttribute()] [MarshalAsAttribute(UnmanagedType.LPStr)] string path) ;
开发者ID:cosmo0920,项目名称:GrnSharp,代码行数:1,代码来源:NativeMethods.cs

示例6: grn_table_tokenize

 public static extern  System.IntPtr grn_table_tokenize(ref grn_ctx ctx, ref grn_table_cursor table, [InAttribute()] [MarshalAsAttribute(UnmanagedType.LPStr)] string str, uint str_len, ref grn_table_cursor buf, byte addp) ;
开发者ID:cosmo0920,项目名称:GrnSharp,代码行数:1,代码来源:NativeMethods.cs

示例7: grn_ctx_connect

 public static extern  grn_rc grn_ctx_connect(ref grn_ctx ctx, [InAttribute()] [MarshalAsAttribute(UnmanagedType.LPStr)] string host, int port, int flags) ;
开发者ID:cosmo0920,项目名称:GrnSharp,代码行数:1,代码来源:NativeMethods.cs

示例8: grn_table_select

 public static extern  System.IntPtr grn_table_select(ref grn_ctx ctx, ref grn_table_cursor table, ref grn_table_cursor expr, ref grn_table_cursor res, grn_operator op) ;
开发者ID:cosmo0920,项目名称:GrnSharp,代码行数:1,代码来源:NativeMethods.cs

示例9: grn_obj_columns

 public static extern  int grn_obj_columns(ref grn_ctx ctx, ref grn_table_cursor table, [InAttribute()] [MarshalAsAttribute(UnmanagedType.LPStr)] string str, uint str_size, ref grn_table_cursor res) ;
开发者ID:cosmo0920,项目名称:GrnSharp,代码行数:1,代码来源:NativeMethods.cs

示例10: grn_ctx_pop

 public static extern  System.IntPtr grn_ctx_pop(ref grn_ctx ctx) ;
开发者ID:cosmo0920,项目名称:GrnSharp,代码行数:1,代码来源:NativeMethods.cs

示例11: grn_expr_alloc

 public static extern  System.IntPtr grn_expr_alloc(ref grn_ctx ctx, ref grn_table_cursor expr, uint domain, ushort flags) ;
开发者ID:cosmo0920,项目名称:GrnSharp,代码行数:1,代码来源:NativeMethods.cs

示例12: grn_ctx_push

 public static extern  grn_rc grn_ctx_push(ref grn_ctx ctx, ref grn_table_cursor obj) ;
开发者ID:cosmo0920,项目名称:GrnSharp,代码行数:1,代码来源:NativeMethods.cs

示例13: grn_expr_exec

 public static extern  System.IntPtr grn_expr_exec(ref grn_ctx ctx, ref grn_table_cursor expr, int nargs) ;
开发者ID:cosmo0920,项目名称:GrnSharp,代码行数:1,代码来源:NativeMethods.cs

示例14: grn_expr_compile

 public static extern  grn_rc grn_expr_compile(ref grn_ctx ctx, ref grn_table_cursor expr) ;
开发者ID:cosmo0920,项目名称:GrnSharp,代码行数:1,代码来源:NativeMethods.cs

示例15: grn_table_create_for_group

 public static extern  System.IntPtr grn_table_create_for_group(ref grn_ctx ctx, [InAttribute()] [MarshalAsAttribute(UnmanagedType.LPStr)] string name, uint name_size, [InAttribute()] [MarshalAsAttribute(UnmanagedType.LPStr)] string path, ref grn_table_cursor group_key, ref grn_table_cursor value_type, uint max_n_subrecs) ;
开发者ID:cosmo0920,项目名称:GrnSharp,代码行数:1,代码来源:NativeMethods.cs


注:本文中的grn_ctx类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。