TimeZoneInfo.StandardName Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene el nombre para mostrar de la hora estándar de la zona horaria.
public:
property System::String ^ StandardName { System::String ^ get(); };
public string StandardName { get; }
member this.StandardName : string
Public ReadOnly Property StandardName As String
Valor de propiedad
Nombre para mostrar de la hora estándar de la zona horaria.
Ejemplos
En el ejemplo siguiente se define un método denominado DisplayDateWithTimeZoneName
que usa el método para determinar si se debe mostrar el IsDaylightSavingTime(DateTime) nombre de hora estándar de una zona horaria o el nombre del horario de verano.
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
Comentarios
El nombre para mostrar se localiza en función de la referencia cultural instalada con el sistema operativo Windows.
La StandardName propiedad es idéntica a la StandardName propiedad de la TimeZone clase .
Si el idioma del sistema operativo es inglés, el valor de la StandardName propiedad suele ser, pero no siempre, idéntico al de la Id propiedad.