SPRegionalSettings.TimeZone Property
Gets the time zone that is used on the server.
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: Yes
Available in SharePoint Online
Property Value
Type: Microsoft.SharePoint.SPTimeZoneAn SPTimeZone object that represents the time zone.
The following code example returns the Indiana time zone through the TimeZones property and then assigns the time zone to the root Web site of the specified site collection.
using (SPSite oSiteCollection = new SPSite("http://localhost")) { using(SPWeb oWebsiteRoot = oSiteCollection.RootWeb) { SPRegionalSettings oRegionalSettings = oWebsiteRoot.RegionalSettings; SPTimeZone oTimeZoneIndianaEast = oRegionalSettings.TimeZones[15]; oRegionalSettings.TimeZone.ID = oTimeZoneIndianaEast.ID; oWebsiteRoot.Update(); } }
Note |
|---|
Certain objects implement the IDisposable interface, and you must avoid retaining these objects in memory after they are no longer needed. For information about good coding practices, see Disposing Objects. |
