本文整理汇总了C#中Rev类的典型用法代码示例。如果您正苦于以下问题:C# Rev类的具体用法?C# Rev怎么用?C# Rev使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Rev类属于命名空间,在下文中一共展示了Rev类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: client_log
public abstract IntPtr client_log (IntPtr apr_array_header_t_targets,
ref Rev rev_start, ref Rev rev_end,
int discover_changed_paths,
int strict_node_history,
svn_log_message_receiver_t receiver,
IntPtr receiver_baton,
IntPtr ctx, IntPtr pool);
示例2: svn_client_ls
[DllImport(svnclientlib)] static extern IntPtr svn_client_ls (out IntPtr dirents, string path_or_url,
ref Rev revision, int recurse, IntPtr ctx,
IntPtr pool);
示例3: svn_client_propget
[DllImport(svnclientlib)] static extern IntPtr svn_client_propget (out IntPtr value, string name, string target,
ref Rev revision,
[MarshalAs (UnmanagedType.Bool)] bool recurse,
IntPtr ctx, IntPtr pool);
示例4: svn_client_diff
[DllImport(svnclientlib)] static extern IntPtr svn_client_diff (IntPtr diff_options, string path1,
ref Rev revision1, string path2,
ref Rev revision2, [MarshalAs (UnmanagedType.Bool)] bool recurse,
[MarshalAs (UnmanagedType.Bool)] bool ignore_ancestry,
[MarshalAs (UnmanagedType.Bool)] bool no_diff_deleted,
IntPtr outfile,
IntPtr errfile,
IntPtr ctx,
IntPtr pool);
示例5: svn_client_move
[DllImport(svnclientlib)] static extern IntPtr svn_client_move (ref IntPtr commit_info_p, string srcPath, ref Rev rev,
string destPath, [MarshalAs (UnmanagedType.Bool)] bool force,
IntPtr ctx, IntPtr pool);
示例6: svn_client_cat2
[DllImport(svnclientlib)] static extern IntPtr svn_client_cat2 (IntPtr stream, string path_or_url,
ref Rev peg_revision,
ref Rev revision,
IntPtr ctx, IntPtr pool);
示例7: svn_client_status2
[DllImport(svnclientlib)] static extern IntPtr svn_client_status2 (IntPtr svn_revnum_t, string path, ref Rev revision,
svn_wc_status_func2_t status_func, IntPtr status_baton,
[MarshalAs (UnmanagedType.Bool)] bool recurse,
[MarshalAs (UnmanagedType.Bool)] bool get_all,
[MarshalAs (UnmanagedType.Bool)] bool update,
[MarshalAs (UnmanagedType.Bool)] bool no_ignore,
[MarshalAs (UnmanagedType.Bool)] bool ignore_externals,
IntPtr ctx, IntPtr pool);
示例8: client_blame
public override IntPtr client_blame (string path, ref Rev rev_start, ref Rev rev_end, svn_client_blame_receiver_t receiver, System.IntPtr baton, System.IntPtr ctx, System.IntPtr pool)
{
return svn_client_blame (path, ref rev_start, ref rev_end, receiver, baton, ctx, pool);
}
示例9: client_ls
public override IntPtr client_ls (out IntPtr dirents, string path_or_url,
ref Rev revision, bool recurse, IntPtr ctx,
IntPtr pool)
{
return svn_client_ls (out dirents, path_or_url, ref revision, recurse, ctx, pool);
}
示例10: svn_client_prop_get
[DllImport(svnclientlib)] static extern IntPtr svn_client_prop_get (out IntPtr value, string name, string target, ref Rev revision, int recurse, IntPtr ctx, IntPtr pool);
示例11: svn_client_diff
[DllImport(svnclientlib)] static extern IntPtr svn_client_diff (IntPtr diff_options, string path1,
ref Rev revision1, string path2,
ref Rev revision2, int recurse,
int ignore_ancestry,
int no_diff_deleted,
IntPtr outfile,
IntPtr errfile,
IntPtr ctx,
IntPtr pool);
示例12: svn_client_checkout
[DllImport(svnclientlib)] static extern IntPtr svn_client_checkout (IntPtr result_rev, string url, string path, ref Rev rev,
int recurse, IntPtr ctx, IntPtr pool);
示例13: svn_client_move
[DllImport(svnclientlib)] static extern IntPtr svn_client_move (ref IntPtr commit_info_p, string srcPath, ref Rev rev,
string destPath, int force, IntPtr ctx, IntPtr pool);
示例14: svn_client_update
[DllImport(svnclientlib)] static extern IntPtr svn_client_update (IntPtr result_rev, string path, ref Rev revision,
int recurse, IntPtr ctx, IntPtr pool);
示例15: svn_client_status
[DllImport(svnclientlib)] static extern IntPtr svn_client_status (IntPtr result_rev, string path, ref Rev revision,
svn_wc_status_func_t status_func, IntPtr status_baton,
int descend, int get_all, int update, int no_ignore,
IntPtr ctx, IntPtr pool);