DateTimeFormatInfo.UniversalSortableDateTimePattern-Eigenschaft
Ruft das Formatmuster für einen universellen, sortierbaren Datums- und Zeitwert ab, das dem Formatzeichen 'u' zugeordnet ist.
Namespace: System.Globalization
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public ReadOnly Property UniversalSortableDateTimePattern As String
'Usage
Dim instance As DateTimeFormatInfo
Dim value As String
value = instance.UniversalSortableDateTimePattern
public string UniversalSortableDateTimePattern { get; }
public:
property String^ UniversalSortableDateTimePattern {
String^ get ();
}
/** @property */
public String get_UniversalSortableDateTimePattern ()
public function get UniversalSortableDateTimePattern () : String
Eigenschaftenwert
Das Formatmuster für einen universellen, sortierbaren Datums- und Zeitwert, das dem Formatzeichen 'u' zugeordnet ist.
Hinweise
UniversalSortableDateTimePattern kann verwendet werden, um die Uhrzeit in einem sortierbaren Format mit dem Kennzeichner "Z" für die koordinierte Weltzeit am Ende anzuzeigen. Das Format ist sortierbar, da es führende Nullen für Jahr, Monat, Tag, Stunde, Minute und Sekunde verwendet. Das Muster ("yyyy'-'MM'-'dd HH':'mm':'ss'Z'") ist unabhängig von der Kultur oder dem Formatprovider dasselbe.
Beispiel
In folgendem Codebeispiel wird der Wert von UniversalSortableDateTimePattern für bestimmte Kulturen angezeigt.
Imports System
Imports System.Globalization
Public Class SamplesDTFI
Public Shared Sub Main()
' Displays the values of the pattern properties.
Console.WriteLine(" CULTURE PROPERTY VALUE")
PrintPattern("en-US")
PrintPattern("ja-JP")
PrintPattern("fr-FR")
End Sub 'Main
Public Shared Sub PrintPattern(myCulture As [String])
Dim myDTFI As DateTimeFormatInfo = New CultureInfo(myCulture, False).DateTimeFormat
Console.WriteLine(" {0} {1}", myCulture, myDTFI.UniversalSortableDateTimePattern)
End Sub 'PrintPattern
End Class 'SamplesDTFI
'This code produces the following output.
'
' CULTURE PROPERTY VALUE
' en-US yyyy'-'MM'-'dd HH':'mm':'ss'Z'
' ja-JP yyyy'-'MM'-'dd HH':'mm':'ss'Z'
' fr-FR yyyy'-'MM'-'dd HH':'mm':'ss'Z'
'
using System;
using System.Globalization;
public class SamplesDTFI {
public static void Main() {
// Displays the values of the pattern properties.
Console.WriteLine( " CULTURE PROPERTY VALUE" );
PrintPattern( "en-US" );
PrintPattern( "ja-JP" );
PrintPattern( "fr-FR" );
}
public static void PrintPattern( String myCulture ) {
DateTimeFormatInfo myDTFI = new CultureInfo( myCulture, false ).DateTimeFormat;
Console.WriteLine( " {0} {1}", myCulture, myDTFI.UniversalSortableDateTimePattern );
}
}
/*
This code produces the following output.
CULTURE PROPERTY VALUE
en-US yyyy'-'MM'-'dd HH':'mm':'ss'Z'
ja-JP yyyy'-'MM'-'dd HH':'mm':'ss'Z'
fr-FR yyyy'-'MM'-'dd HH':'mm':'ss'Z'
*/
using namespace System;
using namespace System::Globalization;
void PrintPattern( String^ myCulture )
{
CultureInfo^ MyCI = gcnew CultureInfo( myCulture,false );
DateTimeFormatInfo^ myDTFI = MyCI->DateTimeFormat;
Console::WriteLine( " {0} {1}", myCulture, myDTFI->UniversalSortableDateTimePattern );
}
int main()
{
// Displays the values of the pattern properties.
Console::WriteLine( " CULTURE PROPERTY VALUE" );
PrintPattern( "en-US" );
PrintPattern( "ja-JP" );
PrintPattern( "fr-FR" );
}
/*
This code produces the following output.
CULTURE PROPERTY VALUE
en-US yyyy'-'MM'-'dd HH':'mm':'ss'Z'
ja-JP yyyy'-'MM'-'dd HH':'mm':'ss'Z'
fr-FR yyyy'-'MM'-'dd HH':'mm':'ss'Z'
*/
import System.* ;
import System.Globalization.* ;
public class SamplesDTFI
{
public static void main(String[] args)
{
// Displays the values of the pattern properties.
Console.WriteLine(" CULTURE PROPERTY VALUE");
PrintPattern("en-US");
PrintPattern("ja-JP");
PrintPattern("fr-FR");
} //main
public static void PrintPattern(String myCulture)
{
DateTimeFormatInfo myDTFI = (new CultureInfo(myCulture, false))
.get_DateTimeFormat();
Console.WriteLine(" {0} {1}", myCulture, myDTFI
.get_UniversalSortableDateTimePattern());
} //PrintPattern
} //SamplesDTFI
/*
This code produces the following output.
CULTURE PROPERTY VALUE
en-US yyyy'-'MM'-'dd HH':'mm':'ss'Z'
ja-JP yyyy'-'MM'-'dd HH':'mm':'ss'Z'
fr-FR yyyy'-'MM'-'dd HH':'mm':'ss'Z'
*/
Plattformen
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
.NET Compact Framework
Unterstützt in: 2.0, 1.0
Siehe auch
Referenz
DateTimeFormatInfo-Klasse
DateTimeFormatInfo-Member
System.Globalization-Namespace
DateTimeFormatInfo.SortableDateTimePattern-Eigenschaft