C# 时间转换为 GMT(英国夏令时间),考虑夏令时、英国和英国的偏移关于托管地点(美国)
基本上我想将美国时间(托管服务器时间)转换为GMT(英国夏令时间)
技术C#,.NET 4.0,TimeZoneInfoClass
详细场景:
我正在创建一个短信发送应用程序。它不应该从英国晚上10点到上午6点30发送短信时间或格林威治标准时间。
服务器位于美国或假设在世界任何地方。
所以我的方法是
我假设托管服务器有自动日光调整补丁。所以我不检查托管服务器夏令时。可以吗?
它会自动调整美国时间&我将通过
获得正确的时间,UTCNow()
我从
timezoneinfoclass
或Time.UTCNow()
方法获得 GMT 时间。现在我有了正确的 UTC 时间 &我必须检查夏令时 a/c 到英国时间(目标时区)最后我检查目标时区(即英国)的参数,例如基于机器时间的
Datetime,UTCoffset,IsDayLightSaving,SupportDaylightSaving
区域 ID(GMT 时区伦敦..)。例如:-timezoneid.local.searchbyma..(GMT) //*语法)if (IsDayLightSaving==true) { UTC.AddHours(1) //语法不正确 } 别的 { // GMT= 英国时间 }
OS 我有以下问题:-
这是一种好方法还是有缺陷的方法?有哪些替代方案?
我应该检查托管时区和时间的夏令时吗?然后如果是 DST,则通过添加一小时来纠正偏移量?
有任何免费可靠的网络服务来获取 GMT 时间吗?
请推荐
谢谢
Basically I want to convert US time (hosting Server time) to GMT (UK Summer Time)
technology C#, .NET 4.0, TimeZoneInfoClass
Detailed scenario:
I am creating a SMS sending application.It should not send sms from 10.00PM to 6.30 AM UK Time or GMT.
Server resides in US or suppose anywhere in the world.
So my approach is
I am assuming that Hosting server has Auto Day Light Adjusting Patch. So I don't check for hosting Server daylight saving. Is that Ok??
It adjust for US time automatically & I will get correct time through
UTCNow()
I get GMT time from
timezoneinfoclass
orTime.UTCNow()
method. Now I have correct UTC time & I have to check for Daylight saving a/c to UK time (targeted timezone)lastly I check parameter for targeted timezone (i.e UK) like
Datetime,UTCoffset,IsDayLightSaving,SupportDaylightSaving
based on Machine Time Zone ID (GMT time zone London..). eg:-timezoneid.local.searchbyma..(GMT) //*Syntax)if (IsDayLightSaving==true) { UTC.AddHours(1) //syntax is not correct } else { // GMT= UK time }
OS I Have following questions :-
Is This a good approach or flawed one ? What are the alternatives?
Should I check for daylight saving for hosting timezone & then correct the offset by adding one hour if it is DST ??
Any free reliable web services for getting GMT time?
Please suggest
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论