本文整理汇总了C#中SvnClient.RemoteCreateDirectory方法的典型用法代码示例。如果您正苦于以下问题:C# SvnClient.RemoteCreateDirectory方法的具体用法?C# SvnClient.RemoteCreateDirectory怎么用?C# SvnClient.RemoteCreateDirectory使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SvnClient
的用法示例。
在下文中一共展示了SvnClient.RemoteCreateDirectory方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: RemoteCreateDirectory
/// <summary>
/// Creates the directory specified by <see cref="uri"/>
/// Returns false if the user cancelled creating the directory, true otherwise
/// </summary>
/// <param name="e"></param>
/// <param name="title">The title of the Create dialog</param>
/// <param name="uri">The directory to be created</param>
/// <param name="cl"></param>
/// <returns></returns>
static bool RemoteCreateDirectory(CommandEventArgs e, string title, Uri uri, SvnClient cl)
{
using (CreateDirectoryDialog createDialog = new CreateDirectoryDialog())
{
createDialog.Text = title; // Override dialog title with text from other dialog
createDialog.NewDirectoryName = uri.ToString();
createDialog.NewDirectoryReadonly = true;
if (createDialog.ShowDialog(e.Context) == DialogResult.OK)
{
// Create uri (including optional /trunk if required)
SvnCreateDirectoryArgs cdArg = new SvnCreateDirectoryArgs();
cdArg.CreateParents = true;
cdArg.LogMessage = createDialog.LogMessage;
cl.RemoteCreateDirectory(uri, cdArg);
return true;
}
return false; // bail out, we cannot continue without directory in the repository
}
}
示例2: PostCommitErrorTest
public void PostCommitErrorTest()
{
SvnSandBox sbox = new SvnSandBox(this);
Uri uri = sbox.CreateRepository(SandBoxRepository.Empty);
using (InstallHook(uri, SvnHookType.PostCommit, OnPostCommit))
{
using (SvnClient cl = new SvnClient())
{
SvnCommitResult cr;
SvnCreateDirectoryArgs da = new SvnCreateDirectoryArgs();
da.CreateParents = true;
da.LogMessage = "Created!";
cl.RemoteCreateDirectory(new Uri(uri, "a/b/c/d/e/f"), da, out cr);
Assert.That(cr, Is.Not.Null);
Assert.That(cr.PostCommitError.Contains(Environment.NewLine));
Assert.That(cr.PostCommitError.Substring(
cr.PostCommitError.IndexOf(Environment.NewLine, StringComparison.OrdinalIgnoreCase)
+ Environment.NewLine.Length),
Is.EqualTo("The Post Commit Warning"));
}
}
}