况洋洋
2025-07-04 0d247bd2a17e0f99f3609774a1ce54ae00857997
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
// Copyright © 2016 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
 
using System;
 
namespace CefSharp.Internals
{
    /// <summary>
    /// Mapping to/from CefBaseTime
    /// </summary>
    public static class CefTimeUtils
    {
        private static IBaseTimeConverter BaseTimeConverter = new BaseTimeConverter();
 
        /// <summary>
        /// Assign your own custom <see cref="IBaseTimeConverter"/> converter
        /// used to convert <see cref="DateTime"/> to/from CefBaseTime
        /// </summary>
        /// <param name="converter">converter</param>
        /// <remarks>
        /// Must be called in all processes for custom conversion of DateTime
        /// used by the Sync Javascript Binding (.Net 4.x only)
        /// </remarks>
        public static void UseBaseTimeConveter(IBaseTimeConverter converter)
        {
            if (converter == null)
            {
                throw new ArgumentNullException(nameof(converter));
            }
 
            BaseTimeConverter = converter;
        }
 
        /// <summary>
        /// Converts from CefBaseTime to DateTime?
        /// </summary>
        /// <param name="val">
        /// Represents a wall clock time in UTC. Values are not guaranteed to be monotonically
        /// non-decreasing and are subject to large amounts of skew. Time is stored internally
        /// as microseconds since the Windows epoch (1601).
        /// </param>
        /// <returns>if <paramref name="val"/> is 0 then returns null otherwise returns a <see cref="DateTime"/> of <see cref="DateTimeKind.Local"/></returns>
        public static DateTime? FromBaseTimeToNullableDateTime(long val)
        {
            if(val == 0)
            {
                return null;
            }
 
            return FromBaseTimeToDateTime(val);
        }
 
        /// <summary>
        /// Converts from CefBaseTime to DateTime
        /// </summary>
        /// <param name="val">
        /// Represents a wall clock time in UTC. Values are not guaranteed to be monotonically
        /// non-decreasing and are subject to large amounts of skew. Time is stored internally
        /// as microseconds since the Windows epoch (1601).
        /// </param>
        /// <returns>returns a <see cref="DateTime"/> of <see cref="DateTimeKind.Local"/></returns>
        public static DateTime FromBaseTimeToDateTime(long val)
        {
            return BaseTimeConverter.FromBaseTimeToDateTime(val);
        }
 
        /// <summary>
        /// Converts from DateTime to CefBaseTime
        /// </summary>
        /// <param name="dateTime">DateTime</param>
        /// <returns>
        /// Represents a wall clock time in UTC. Time as microseconds since the Windows epoch (1601).
        /// </returns>
        public static long FromDateTimeToBaseTime(DateTime dateTime)
        {
            return BaseTimeConverter.FromDateTimeToBaseTime(dateTime);
        }
    }
}