Back to product page
- Introduction
- License agreement
- Classes
- Enumerations
- Exceptions
- WeOnlyDo.Client.SFTP
- Methods
- Properties
- Authentication
- Blocking
- BufferSize
- Compression
- Encryption
- EncryptionList
- HMacList
- Hostname
- KeepAlives
- KeyExchangeList
- LastError
- ListItem
- LocalPath
- Login
- MaxTransferRate
- Password
- Port
- PrivateKey
- ProxyHostname
- ProxyLogin
- ProxyPassword
- ProxyPort
- ProxyType
- RemoteIdentification
- RemotePath
- Resume
- State
- Timeout
- TransferMode
- TransferRate
- TransferTime
- Version
- Events
- How to get support?
AttributesEvent event
Fires when wodSFTP.NET has information about file attributes.
Syntax
- C#
- VB.NET
delegate void AttributesDelegate(object Sender, AttributesArgs Args);
The AttributesEvent(Args.AccessTime,Args.Gid,Args.ModificationTime,Args.Permissions,Args.Size,Args.Uid) syntax has these parts:
The AttributesEvent(Args.AccessTime,Args.Gid,Args.ModificationTime,Args.Permissions,Args.Size,Args.Uid) syntax has these parts:
Args.AccessTime | DateTime class that represents when was file/directory last accessed. |
Args.Gid | Long. Group ID - ID of group owner. |
Args.ModificationTime | DateTime. Class that represents when was file/directory modified. |
Args.Permissions | Long. POSIX representation of file access permissions. |
Args.Size | Long. Size of file in bytes. |
Args.Uid | Long. User ID - ID of the owning user. |
Delegate Sub AttributesDelegate(ByVal Sender As Object, ByVal Args As WeOnlyDo.Client.SFTP.AttributesArgs)
The AttributesEvent(Args.AccessTime,Args.Gid,Args.ModificationTime,Args.Size,Args.Uid) syntax has these parts:
The AttributesEvent(Args.AccessTime,Args.Gid,Args.ModificationTime,Args.Size,Args.Uid) syntax has these parts:
Args.AccessTime | DateTime class that represents when was file/directory last accessed. |
Args.Gid | Long. Group ID - ID of group owner. |
Args.ModificationTime | DateTime. Class that represents when was file/directory modified. |
Args.Size | Long. Size of file in bytes. |
Args.Uid | Long. User ID - ID of the owning user. |
Remarks
This event is fired as a result of GetAttributes method. Once server returns information about requested file/directory, it will be parsed by wodSFTP.NET and provided using this event.Permissions are defined by POSIX standard. For a more brief description, to to GetAttributes help page.