forked from saucepleez/taskt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Net.NetworkInformation; | ||
using System.Windows.Forms; | ||
using System.Xml.Serialization; | ||
using taskt.UI.CustomControls; | ||
using taskt.UI.Forms; | ||
|
||
namespace taskt.Core.Automation.Commands | ||
{ | ||
[Serializable] | ||
[Attributes.ClassAttributes.Group("Misc Commands")] | ||
[Attributes.ClassAttributes.Description("This command allows you to add an in-line comment to the script.")] | ||
[Attributes.ClassAttributes.UsesDescription("Use this command when you want to add code comments or document code. Usage of variables (ex. [vVar]) within the comment block will be parsed and displayed when running the script.")] | ||
[Attributes.ClassAttributes.ImplementationDescription("This command is for visual purposes only")] | ||
public class PingCommand : ScriptCommand | ||
{ | ||
|
||
[XmlAttribute] | ||
[Attributes.PropertyAttributes.PropertyDescription("Please Enter ip address or host name that you want to ping")] | ||
[Attributes.PropertyAttributes.PropertyUIHelper(Attributes.PropertyAttributes.PropertyUIHelper.UIAdditionalHelperType.ShowVariableHelper)] | ||
[Attributes.PropertyAttributes.InputSpecification("Ip address or hostname you want to ping")] | ||
[Attributes.PropertyAttributes.SampleUsage("** 192.168.0.1 or www.google.com**")] | ||
[Attributes.PropertyAttributes.Remarks("")] | ||
public string v_hostname { get; set; } | ||
|
||
|
||
public PingCommand() | ||
{ | ||
this.CommandName = "PingCommand"; | ||
this.SelectionName = "Ping Command"; | ||
this.DisplayForeColor = System.Drawing.Color.ForestGreen; | ||
this.CommandEnabled = true; | ||
this.CustomRendering = true; | ||
} | ||
public override List<Control> Render(frmCommandEditor editor) | ||
{ | ||
base.Render(editor); | ||
RenderedControls.AddRange(CommandControls.CreateDefaultInputGroupFor("v_hostname", this, editor)); | ||
|
||
return RenderedControls; | ||
} | ||
|
||
public override void RunCommand(object sender) | ||
{ | ||
|
||
Ping ping = new Ping(); | ||
string hstname = v_hostname.ConvertToUserVariable(sender); | ||
PingReply pingresult = ping.Send(hstname); | ||
if (pingresult.Status.ToString() == "Success") | ||
{ | ||
|
||
} | ||
else | ||
{ | ||
throw new Exception(); | ||
} | ||
|
||
} | ||
|
||
public override string GetDisplayValue() | ||
{ | ||
return "Pinging " + this.v_hostname; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters