提问人:PPN 提问时间:2/11/2021 最后编辑:PPN 更新时间:3/2/2021 访问量:252
如何找到匿名对象的所有DateTime属性?
How to find all DateTime properties of anonymous object?
问:
我想在服务器端代码中处理它们之前,将从客户端收到的所有日期转换为 UTC。我正在考虑使用ActionFilter,我想从请求有效负载中找到所有日期字段并将其转换为UTC日期。我知道 Reflection 有助于按其类型查找属性,但在 Anonymous 对象的情况下不起作用。
下面是我的代码示例
//convert body to object
var result = JsonConvert.DeserializeObject<object>(rawRequest);
var type = result.GetType();
//get collection of properties from object
var properties = result.GetType().GetProperties();
foreach (var property in properties)
{
//if data type is DateTime then convert into UTC
if (property.PropertyType == typeof(DateTime?) || property.PropertyType == typeof(DateTime))
{
string TimeZoneId = "India Standard Time";
if (HttpContext.Current.Request.Headers["TimeZoneId"] != null)
{
TimeZoneId = HttpContext.Current.Request.Headers.GetValues("TimeZoneId").FirstOrDefault();
}
var localTimeZone = TimeZoneInfo.FindSystemTimeZoneById(TimeZoneId);
var Date = DateTime.SpecifyKind(((DateTime?)property.GetValue(result, null)) ?? DateTime.Now, DateTimeKind.Unspecified);
var localTime = TimeZoneInfo.ConvertTimeToUtc(Date, localTimeZone);
}
}
答: 暂无答案
评论