C# Class Renci.SshNet.Sftp.Requests.SftpLinkRequest

Inheritance: SftpRequest
Show file Open project: sshnet/SSH.NET Class Usage Examples

Public Methods

Method Description
SftpLinkRequest ( uint protocolVersion, uint requestId, string newLinkPath, string existingPath, bool isSymLink, Action statusAction ) : Renci.SshNet.Sftp.Responses

Initializes a new instance of the SftpLinkRequest class.

Protected Methods

Method Description
LoadData ( ) : void
SaveData ( ) : void

Method Details

LoadData() protected method

protected LoadData ( ) : void
return void

SaveData() protected method

protected SaveData ( ) : void
return void

SftpLinkRequest() public method

Initializes a new instance of the SftpLinkRequest class.
public SftpLinkRequest ( uint protocolVersion, uint requestId, string newLinkPath, string existingPath, bool isSymLink, Action statusAction ) : Renci.SshNet.Sftp.Responses
protocolVersion uint The protocol version.
requestId uint The request id.
newLinkPath string Specifies the path name of the new link to create.
existingPath string Specifies the path of a target object to which the newly created link will refer. In the case of a symbolic link, this path may not exist.
isSymLink bool if set to false the link should be a hard link, or a second directory entry referring to the same file or directory object.
statusAction Action The status action.
return Renci.SshNet.Sftp.Responses