7 references to Timestamp
System.ServiceModel.Web (2)
System\ServiceModel\Web\CachingParameterInspector.cs (2)
311
cache.SetExpires(HttpContext.Current.
Timestamp
.AddSeconds((double)this.cacheProfile.Duration));
314
cache.SetLastModified(HttpContext.Current.
Timestamp
);
System.Web (5)
Abstractions\HttpContextWrapper.cs (1)
205
return _context.
Timestamp
;
HttpResponse.cs (1)
3138
Cache.SetExpires(_context.
Timestamp
+ new TimeSpan(0, _expiresInMinutes, 0));
UI\Page.cs (2)
3703
cache.SetExpires(Context.
Timestamp
.AddSeconds(duration));
3706
cache.SetLastModified(Context.
Timestamp
);
UI\TraceContext.cs (1)
767
row[SR.Trace_Time_of_Request] = _context.
Timestamp
.ToString("G");