本文整理汇总了C#中IStep.append_Line方法的典型用法代码示例。如果您正苦于以下问题:C# IStep.append_Line方法的具体用法?C# IStep.append_Line怎么用?C# IStep.append_Line使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IStep
的用法示例。
在下文中一共展示了IStep.append_Line方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: pingAddress
public void pingAddress(IStep step, string pingTarget)
{
O2Thread.mtaThread(
()=> {
step.allowNext(false);
step.append_Line("Sending a ping request to: " + pingTarget,true,true);
var processName = "ping.exe";
var processParams = pingTarget;
var process = Processes.startProcessAsConsoleApplication(processName,processParams,
(sender, e) => processDataReceived(step, e.Data)
,null);
process.WaitForExit();
step.append_Line("step completed");
step.allowNext(true);
});
}
开发者ID:CallMeSteve,项目名称:O2.Platform.Scripts,代码行数:16,代码来源:Wizard+-+Enable+or+Disable+Network+Interfaces.cs
示例2: networkAdapterAction
public void networkAdapterAction(IStep step, string actionName,Func<string,string> methodToExecute)
{
O2Thread.mtaThread(
()=> {
step.allowNext(false);
step.append_Line(actionName + " Network Adapter(s)", true /*extraLineAfter */, true /*extraLineBefore */);
var networkAdapters = Netsh.interfaces_getNames();
foreach(var networkAdapter in networkAdapters)
{
var result = methodToExecute(networkAdapter).Trim();
if (result == "")
step.append_Line(" - " + networkAdapter);
}
step.append_Line("step completed",false /*extraLineAfter */ ,true /*extraLineBefore */);
step.allowNext(true);
});
}
开发者ID:CallMeSteve,项目名称:O2.Platform.Scripts,代码行数:17,代码来源:Wizard+-+Enable+or+Disable+Network+Interfaces.cs
示例3: downloadFiles
public void downloadFiles(IStep step, string svnUrl, string targetFolder)
{
O2Thread.mtaThread(
()=> {
step.allowNext(false);
step.allowBack(false);
step.append_Line(" .... Deleting local database: {0}", targetFolder);
Files.deleteFolder(targetFolder,true);
step.append_Line(" .... Calculating files to download");
var svnMappedUrls = SvnApi.HttpMode.getSvnMappedUrls(svnUrl, true);
step.append_Line(" .... There are {0} files & folders to download {1}" , svnMappedUrls.Count(), Environment.NewLine);
foreach(var svnMappedUrl in svnMappedUrls)
{
step.append_Line(" * Downloading: {0}", svnMappedUrl.FullPath.Replace(svnUrl, ""));
SvnApi.HttpMode.download(svnMappedUrl, svnUrl, targetFolder);
}
step.append_Line("{0}{0} .... Download complete", Environment.NewLine);
step.allowNext(true);
step.allowBack(true);
});
}
示例4: executeTask
public void executeTask(IStep step)
{
O2Thread.mtaThread(
()=> {
var sourceDirectory = step.getPathFromStep(0);
var targetDirectory = step.getPathFromStep(1);
var targetFile = calculateTargetFileName(sourceDirectory, targetDirectory);
step.allowNext(false);
step.allowBack(false);
step.append_Line(" .... creating zip file ....");
new zipUtils().zipFolder(sourceDirectory, targetFile);
if (File.Exists(targetFile))
step.append_Line("File Created: {0}", targetFile);
else
step.append_Line("There was a problem creating the file: {0}", targetFile);
step.append_Line("all done");
step.allowNext(true);
step.allowBack(true);
});
}
示例5: testMySqlDetails
public void testMySqlDetails(IStep step)
{
// run tasks on separate thread
O2Thread.mtaThread(
()=> {
step.append_Line("Trying to connect and loging to MySql server \r\n");
if (OunceMySql.isConnectionOpen())
step.append_Line("ALL OK: Sucessfully connected to MySql database");
else
step.append_Line("ERROR!: It was not possible to connected to MySql database, check Log Viewer for error details");
step.append_Line("");
step.append_Line("Test completed");
});
}
示例6: processDataReceived
public void processDataReceived(IStep step, string dataReceived)
{
if (dataReceived != "")
step.append_Line(" {0}", dataReceived);
}
开发者ID:CallMeSteve,项目名称:O2.Platform.Scripts,代码行数:5,代码来源:Wizard+-+Enable+or+Disable+Network+Interfaces.cs