C# Class Renci.SshNet.Sftp.SftpMessage

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

Public Methods

Method Description
Load ( uint protocolVersion, byte data, int offset, int count, Encoding encoding ) : SftpMessage
ToString ( ) : string

Protected Methods

Method Description
LoadData ( ) : void
ReadAttributes ( ) : SftpFileAttributes
SaveData ( ) : void
WriteBytes ( SshDataStream stream ) : void

Writes the current message to the specified SshDataStream.

Private Methods

Method Description
Load ( uint protocolVersion, SftpMessageTypes messageType, byte data, int offset, int count, Encoding encoding ) : SftpMessage

Method Details

Load() public static method

public static Load ( uint protocolVersion, byte data, int offset, int count, Encoding encoding ) : SftpMessage
protocolVersion uint
data byte
offset int
count int
encoding Encoding
return SftpMessage

LoadData() protected method

protected LoadData ( ) : void
return void

ReadAttributes() protected method

protected ReadAttributes ( ) : SftpFileAttributes
return SftpFileAttributes

SaveData() protected method

protected SaveData ( ) : void
return void

ToString() public method

public ToString ( ) : string
return string

WriteBytes() protected method

Writes the current message to the specified SshDataStream.
protected WriteBytes ( SshDataStream stream ) : void
stream Renci.SshNet.Common.SshDataStream The to write the message to.
return void