Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

TimeZoneInfo.StandardName Property

Definition

Namespace:
System
Assemblies:
mscorlib.dll, System.Runtime.dll
Assemblies:
netstandard.dll, System.Runtime.dll
Assembly:
System.Runtime.dll
Assembly:
System.Core.dll
Assembly:
mscorlib.dll
Assembly:
netstandard.dll
Source:
TimeZoneInfo.cs
Source:
TimeZoneInfo.cs
Source:
TimeZoneInfo.cs
Source:
TimeZoneInfo.cs
Source:
TimeZoneInfo.cs

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Gets the display name for the time zone's standard time.

public:
 property System::String ^ StandardName { System::String ^ get(); };
public string StandardName { get; }
member this.StandardName : string
Public ReadOnly Property StandardName As String

Property Value

The display name of the time zone's standard time.

Examples

The following example defines a method named DisplayDateWithTimeZoneName that uses the IsDaylightSavingTime(DateTime) method to determine whether to display a time zone's standard time name or daylight saving time name.

private void DisplayDateWithTimeZoneName(DateTime date1, TimeZoneInfo timeZone)
{
 Console.WriteLine("The time is {0:t} on {0:d} {1}", 
 date1, 
 timeZone.IsDaylightSavingTime(date1) ?
 timeZone.DaylightName : timeZone.StandardName); 
}
// The example displays output similar to the following:
// The time is 1:00 AM on 4/2/2006 Pacific Standard Time
let displayDateWithTimeZoneName (date1: DateTime) (timeZone: TimeZoneInfo) =
 printfn $"The time is {date1:t} on {date1:d} {if timeZone.IsDaylightSavingTime date1 then timeZone.DaylightName else timeZone.StandardName}" 
// The example displays output similar to the following:
// The time is 1:00 AM on 4/2/2006 Pacific Standard Time
Private Sub DisplayDateWithTimeZoneName(date1 As Date, timeZone As TimeZoneInfo)
 Console.WriteLine("The time is {0:t} on {0:d} {1}", _
 date1, _
 IIf(timeZone.IsDaylightSavingTime(date1), _
 timezone.DaylightName, timezone.StandardName)) 
End Sub
' The example displays output similar to the following:
' The time is 1:00 AM on 4/2/2006 Pacific Standard Time

Remarks

The display name is localized based on the culture installed with the Windows operating system.

The StandardName property is identical to the StandardName property of the TimeZone class.

If the operating system language is English, the value of the StandardName property is usually, but not always, identical to that of the Id property.

Applies to


Feedback

Was this page helpful?