コード例 #1
0
        /// <summary>
        /// Writes the value expressed as a <code>currentTime</code>, which is the current time, specified in ISO8601 format.
        /// </summary>
        /// <param name="value">The time.</param>
        public void WriteCurrentTime(JulianDate value)
        {
            const string PropertyName = CurrentTimePropertyName;

            OpenIntervalIfNecessary();
            Output.WritePropertyName(PropertyName);
            CesiumWritingHelper.WriteDate(Output, value);
        }