16 references to ToString
System (5)
net\System\Net\Cache\IERequestCache.cs (5)
433
Logging.PrintInfo(Logging.RequestCache, SR.GetString(SR.net_log_cache_last_modified, (entry.Info.LastModifiedTime.IsNull? "0": DateTime.FromFileTimeUtc(entry.Info.LastModifiedTime.ToLong()).
ToString
("r"))));
434
Logging.PrintInfo(Logging.RequestCache, SR.GetString(SR.net_log_cache_expires, (entry.Info.ExpireTime.IsNull? "0": DateTime.FromFileTimeUtc(entry.Info.ExpireTime.ToLong()).
ToString
("r"))));
527
if(Logging.On)Logging.PrintInfo(Logging.RequestCache, SR.GetString(SR.net_log_cache_set_expires, expiresUtc.
ToString
("r")));
533
if(Logging.On)Logging.PrintInfo(Logging.RequestCache, SR.GetString(SR.net_log_cache_set_last_modified, lastModifiedUtc.
ToString
("r")));
539
if(Logging.On)Logging.PrintInfo(Logging.RequestCache, SR.GetString(SR.net_log_cache_set_last_synchronized, lastSynchronizedUtc.
ToString
("r")));
System.Web (1)
UI\TraceContext.cs (1)
767
row[SR.Trace_Time_of_Request] = _context.Timestamp.
ToString
("G");
System.Windows.Forms (10)
winforms\Managed\System\WinForms\MonthCalendar.cs (10)
2700
name = SR.GetString(SR.MonthCalendarSingleDateSelected, calendar.SelectionStart.
ToString
("y"));
2703
name = SR.GetString(SR.MonthCalendarRangeSelected, calendar.SelectionStart.
ToString
("y"), calendar.SelectionEnd.
ToString
("y"));
2708
name = SR.GetString(SR.MonthCalendarSingleYearSelected, calendar.SelectionStart.
ToString
("yyyy"));
2711
name = SR.GetString(SR.MonthCalendarYearRangeSelected, calendar.SelectionStart.
ToString
("yyyy"), calendar.SelectionEnd.
ToString
("yyyy"));
2715
name = SR.GetString(SR.MonthCalendarSingleDecadeSelected, calendar.SelectionStart.
ToString
("yyyy"));
2737
value = calendar.SelectionStart.
ToString
("y");
2740
value = string.Format("{0} - {1}", calendar.SelectionStart.
ToString
("y"), calendar.SelectionEnd.
ToString
("y"));