 | FileInfo Constructor |
Namespace:
TeamSpeak.Sdk.Client
Assembly:
TeamSpeak.Sdk (in TeamSpeak.Sdk.dll) Version: 0.1.6124.20226 (0.1.0.0)
Syntaxpublic FileInfo(
Channel channel,
string path,
string name,
ulong size,
DateTimeOffset lastModified,
FileListType type,
ulong incompleteSize
)
Public Sub New (
channel As Channel,
path As String,
name As String,
size As ULong,
lastModified As DateTimeOffset,
type As FileListType,
incompleteSize As ULong
)
public:
FileInfo(
Channel^ channel,
String^ path,
String^ name,
unsigned long long size,
DateTimeOffset lastModified,
FileListType type,
unsigned long long incompleteSize
)
new :
channel : Channel *
path : string *
name : string *
size : uint64 *
lastModified : DateTimeOffset *
type : FileListType *
incompleteSize : uint64 -> FileInfo
Parameters
- channel
- Type: TeamSpeak.Sdk.ClientChannel
Channel for which a FileInfo was requested. - path
- Type: SystemString
Subdirectory inside the channel for which the FileInfo was requested. “/” indicates the root directory is listed. - name
- Type: SystemString
File name. - size
- Type: SystemUInt64
File size. - lastModified
- Type: SystemDateTimeOffset
The date and time on which the file was last modified. - type
- Type: TeamSpeak.SdkFileListType
Indicates if this entry is a directory or a file. - incompleteSize
- Type: SystemUInt64
If the file is currently still being transferred, this indicates the currently transferred file size.
See Also