SPRegionalSettings.GlobalTimeZones property
Obtém os fusos horários que são reconhecidos no servidor que está executando o SharePoint Foundation.
Namespace: Microsoft.SharePoint
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaração
Public Shared ReadOnly Property GlobalTimeZones As SPTimeZoneCollection
Get
'Uso
Dim value As SPTimeZoneCollection
value = SPRegionalSettings.GlobalTimeZones
public static SPTimeZoneCollection GlobalTimeZones { get; }
Property value
Type: Microsoft.SharePoint.SPTimeZoneCollection
Um objeto SPTimeZoneCollection que representa os fusos horários que são reconhecidos no servidor SharePoint Foundation. Esta lista de fusos horários é diferente do que as zonas de tempo do Windows Server.
Examples
O exemplo de código a seguir exibe todas as zonas de tempo definidas na SharePoint Foundation.
Dim timeZonesList As SPTimeZoneCollection = SPRegionalSettings.GlobalTimeZones
Dim timeZone As SPTimeZone
For Each timeZone In timeZonesList
Console.WriteLine(("Time Zone: " + timeZone.Description))
Next timeZone
SPTimeZoneCollection collTimeZonesAvailable = SPRegionalSettings.GlobalTimeZones;
foreach (SPTimeZone oTimeZoneAvailable in collTimeZonesAvailable)
{
Console.WriteLine("Time Zone: " + oTimeZoneAvailable.Description);
}