File 类
表示文件。
继承
System.Object
File
继承成员
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
命名空间: HuajiTech.CoolQ
程序集: HuajiTech.CoolQ.Abstractions.dll
语法
public class File
构造函数
| 改善此文档 查看源代码File(String, String, Int64, Int64)
以指定的 ID、名称、长度和 BusID 初始化一个 File 类的新实例。
声明
public File(string id, string name, long length, long busId)
参数
类型 | 名称 | 描述 |
---|---|---|
System.String | id | ID。 |
System.String | name | 名称。 |
System.Int64 | length | 长度。 |
System.Int64 | busId | BusID。 |
属性
| 改善此文档 查看源代码BusId
获取当前 File 实例的 BusID。
声明
public long BusId { get; }
属性值
类型 | 描述 |
---|---|
System.Int64 |
Id
获取当前 File 实例的 ID。
声明
public string Id { get; }
属性值
类型 | 描述 |
---|---|
System.String |
Length
获取当前 File 实例的长度。
声明
public long Length { get; }
属性值
类型 | 描述 |
---|---|
System.Int64 |
Name
获取当前 File 实例的名称。
声明
public string Name { get; }
属性值
类型 | 描述 |
---|---|
System.String |