コード例 #1
0
ファイル: DyDriveTypeInfo.cs プロジェクト: vorov2/dyalect
 internal static string?Label(ExecutionContext ctx, DyDrive self) => ctx.Handle(() => self.Value.VolumeLabel);
コード例 #2
0
ファイル: DyDriveTypeInfo.cs プロジェクト: vorov2/dyalect
 internal static string?Type(ExecutionContext ctx, DyDrive self) => ctx.Handle(() => self.Value.DriveType.ToString());
コード例 #3
0
ファイル: DyDriveTypeInfo.cs プロジェクト: vorov2/dyalect
 internal static bool IsReady(ExecutionContext ctx, DyDrive self) => ctx.Handle(() => self.Value.IsReady);
コード例 #4
0
ファイル: DyDriveTypeInfo.cs プロジェクト: vorov2/dyalect
 internal static string?Root(ExecutionContext ctx, DyDrive self) => ctx.Handle(() => self.Value.RootDirectory.FullName);
コード例 #5
0
ファイル: DyDriveTypeInfo.cs プロジェクト: vorov2/dyalect
 internal static string?Format(ExecutionContext ctx, DyDrive self) => ctx.Handle(() => self.Value.DriveFormat);
コード例 #6
0
ファイル: DyDriveTypeInfo.cs プロジェクト: vorov2/dyalect
 internal static long AvailableFreeSpace(ExecutionContext ctx, DyDrive self) => ctx.Handle(() => self.Value.AvailableFreeSpace);
コード例 #7
0
ファイル: DyDriveTypeInfo.cs プロジェクト: vorov2/dyalect
 internal static long TotalFreeSpace(ExecutionContext ctx, DyDrive self) => ctx.Handle(() => self.Value.TotalFreeSpace);
コード例 #8
0
ファイル: DyDriveTypeInfo.cs プロジェクト: vorov2/dyalect
 internal static string?Name(ExecutionContext ctx, DyDrive self) => ctx.Handle(() => self.Value.Name);