Difference between revisions of "TShellPing"
From Ultibo.org
(One intermediate revision by the same user not shown) | |||
Line 39: | Line 39: | ||
|colspan="2"|<div style="font-family: monospace,courier;">'''public'''</div> | |colspan="2"|<div style="font-family: monospace,courier;">'''public'''</div> | ||
|- | |- | ||
− | | <code>function DoHelp(AShell:TShell;ASession:TShellSession):Boolean; override;</code> | + | | <code>function DoHelp(AShell:TShell; ASession:TShellSession):Boolean; override;</code> |
− | | | + | | |
|- | |- | ||
− | | <code>function DoInfo(AShell:TShell;ASession:TShellSession):Boolean; override;</code> | + | | <code>function DoInfo(AShell:TShell; ASession:TShellSession):Boolean; override;</code> |
| | | | ||
|- | |- | ||
− | | <code>function DoCommand(AShell:TShell;ASession:TShellSession;AParameters:TStrings):Boolean; override;</code> | + | | <code>function DoCommand(AShell:TShell; ASession:TShellSession; AParameters:TStrings):Boolean; override;</code> |
| | | | ||
|- | |- |
Latest revision as of 05:24, 3 November 2022
Return to Unit ShellNetwork
Description
To be documented
Class definitions
TShellPing = class(TShellCommand)
public
| |
constructor Create;
|
|
private
| |
function PingErrorToDescription(AErrorCode:LongInt):String;
|
|
procedure PingSuccess(AShell:TShell; ASession:TShellSession; AClient:TPingClient);
|
|
procedure PingFailure(AShell:TShell; ASession:TShellSession; AClient:TPingClient);
|
|
public
| |
function DoHelp(AShell:TShell; ASession:TShellSession):Boolean; override;
|
|
function DoInfo(AShell:TShell; ASession:TShellSession):Boolean; override;
|
|
function DoCommand(AShell:TShell; ASession:TShellSession; AParameters:TStrings):Boolean; override;
|
Function declarations
constructor TShellPing.Create;
Description: To be documented
Note | None documented |
---|
function TShellPing.PingErrorToDescription(AErrorCode:LongInt):String;
Description: To be documented
Note | None documented |
---|
procedure TShellPing.PingSuccess(AShell:TShell; ASession:TShellSession; AClient:TPingClient);
Description: To be documented
Note | None documented |
---|
procedure TShellPing.PingFailure(AShell:TShell; ASession:TShellSession; AClient:TPingClient);
Description: To be documented
Note | None documented |
---|
function TShellPing.DoHelp(AShell:TShell; ASession:TShellSession):Boolean;
Description: To be documented
Note | None documented |
---|
function TShellPing.DoInfo(AShell:TShell; ASession:TShellSession):Boolean;
Description: To be documented
Note | None documented |
---|
function TShellPing.DoCommand(AShell:TShell; ASession:TShellSession; AParameters:TStrings):Boolean;
Description: To be documented
Note | None documented |
---|
Return to Unit Reference