TimeZoneInfo.SupportsDaylightSavingTime Propriedade
Definição
Obtém um valor que indica se o fuso horário tem regras de horário de verão.Gets a value indicating whether the time zone has any daylight saving time rules.
public:
property bool SupportsDaylightSavingTime { bool get(); };
public bool SupportsDaylightSavingTime { get; }
member this.SupportsDaylightSavingTime : bool
Public ReadOnly Property SupportsDaylightSavingTime As Boolean
Valor da propriedade
true se o fuso horário der suporte ao horário de verão; caso contrário, false.true if the time zone supports daylight saving time; otherwise, false.
Exemplos
O exemplo a seguir recupera uma coleção de todos os fusos horários que estão disponíveis em um sistema local e exibe os nomes daqueles que não dão suporte ao horário de verão.The following example retrieves a collection of all time zones that are available on a local system and displays the names of those that do not support daylight saving time.
ReadOnlyCollection<TimeZoneInfo> zones = TimeZoneInfo.GetSystemTimeZones();
foreach(TimeZoneInfo zone in zones)
{
if (! zone.SupportsDaylightSavingTime)
Console.WriteLine(zone.DisplayName);
}
Dim zones As ReadOnlyCollection(Of TimeZoneInfo) = TimeZoneInfo.GetSystemTimeZones()
For Each zone As TimeZoneInfo In zones
If Not zone.SupportsDaylightSavingTime Then _
Console.WriteLine(zone.DisplayName)
Next
Comentários
O valor da SupportsDaylightSavingTime propriedade para o fuso horário local retornado pela TimeZoneInfo.Local propriedade reflete a configuração da caixa de seleção do aplicativo de data e hora do painel de controle que define se o sistema se ajusta automaticamente para o horário de verão.The value of the SupportsDaylightSavingTime property for the local time zone returned by the TimeZoneInfo.Local property reflects the setting of the Control Panel Date and Time application's checkbox that defines whether the system automatically adjusts for daylight saving time. Se ele estiver desmarcado ou se nenhuma caixa de seleção for exibida para um fuso horário, o valor dessa propriedade será false .If it is unchecked, or if no checkbox is displayed for a time zone, the value of this property is false.