Back to product page
- Introduction
- License agreement
- Classes
- Enumerations
- Exceptions
- WeOnlyDo.Client.SSH
- Methods
- Properties
- AllocatePty
- Authentication
- Blocking
- Columns
- Command
- Compression
- DataOut
- DataReady
- Encryption
- EncryptionList
- ExitSignal
- ExitStatus
- FingerPrintType
- FIPS
- ForwardHost
- ForwardPort
- HMacList
- Hostname
- KeepAlives
- KeyExchangeList
- KeyFowarding
- Login
- Password
- Port
- PrivateKey
- Prompt
- Protocol
- ProxyHostname
- ProxyLogin
- ProxyPassword
- ProxyPort
- ProxyType
- RemoteIdentification
- Rows
- ShowStdErrorMessages
- State
- StripANSI
- Subsystem
- TerminalType
- Timeout
- Version
- Events
- How to get support?
DataOut property
Holds the total numbers of bytes waiting to leave local side.
Type
Long integer. Total bytes in the outgoing buffer.Syntax
- C#
- VB.NET
Int64 DataOut {get; set; };
Property DataOut As Int64
Remarks
The DataOut property holds total number of bytes that are ready to leave local side. You can monitor it to see if wodSSH.NET has managed to transfer and send everything you provided (for example, through Send method), so you can feed it with more data.You can clear out outgoing buffer by setting this property to 0, but in that case you will most probably leave wodSSH.NET's connection in unknown state.