我有一个 Silverlight 应用程序,它调用我的 WCF 服务以从服务器获取时区列表。所有时区都在服务器上的函数中检索,但我需要知道如何将这些传递回 Silverlight。
我在服务器上的调用如下,但我认为我需要以某种方式将 TimeZoneInfo 序列化为 Know Type,然后才能将其传回。这就是我卡住的地方。
请问有人可以帮忙吗?
Public Function GetTimezones() As ReadOnlyCollection(Of TimeZoneInfo) Implements ITimezoneService.GetTimezones
Dim timeZones As ReadOnlyCollection(Of TimeZoneInfo) = TimeZoneInfo.GetSystemTimeZones()
Return timeZones
End Function