İngilizce dilinde oku

Aracılığıyla paylaş


DateTime.ToUniversalTime Yöntem

Tanım

Geçerli DateTime nesnenin değerini Eşgüdümlü Evrensel Saat'e (UTC) dönüştürür.

C#
public DateTime ToUniversalTime();

Döndürülenler

özelliği Utcolan Kind ve değeri geçerli DateTime nesnenin değerine eşdeğer UTC olan bir nesne veya dönüştürülen değer bir nesne tarafından temsil edilemeyecek kadar büyükse DateTime.MaxValue veya dönüştürülen değer bir DateTimeDateTime nesne tarafından temsil edilemeyecek kadar küçükse DateTime.MinValue.

Örnekler

Aşağıdaki örnekte yöntemi gösterilmektedir ToUniversalTime .

C#
using System;

class Example
{
    static void Main()
    {
        DateTime localDateTime, univDateTime;
        
        Console.WriteLine("Enter a date and time.");
        string strDateTime = Console.ReadLine();

        try {
            localDateTime = DateTime.Parse(strDateTime);
            univDateTime = localDateTime.ToUniversalTime();

            Console.WriteLine("{0} local time is {1} universal time.",
                                localDateTime,
                                    univDateTime);
        }
        catch (FormatException) {
            Console.WriteLine("Invalid format.");
            return;
        }

        Console.WriteLine("Enter a date and time in universal time.");
        strDateTime = Console.ReadLine();

        try {
            univDateTime = DateTime.Parse(strDateTime);
            localDateTime = univDateTime.ToLocalTime();

            Console.WriteLine("{0} universal time is {1} local time.",
                                     univDateTime,
                                     localDateTime);
        }
        catch (FormatException) {
            Console.WriteLine("Invalid format.");
            return;
        }
    }
}
// The example displays output like the following when run on a
// computer whose culture is en-US in the Pacific Standard Time zone:
//     Enter a date and time.
//     12/10/2015 6:18 AM
//     12/10/2015 6:18:00 AM local time is 12/10/2015 2:18:00 PM universal time.
//     Enter a date and time in universal time.
//     12/20/2015 6:42:00
//     12/20/2015 6:42:00 AM universal time is 12/19/2015 10:42:00 PM local time.

Aşağıdaki örnek, özelliğinin SpecifyKind ve ToUniversalTime dönüştürme yöntemlerini nasıl Kind etkilediğini ToLocalTime göstermek için yöntemini kullanır.

C#
// This code example demonstrates the DateTime Kind, Now, and
// UtcNow properties, and the SpecifyKind(), ToLocalTime(),
// and ToUniversalTime() methods.

using System;

class Sample
{
    public static void Main()
    {
        // Get the date and time for the current moment, adjusted
        // to the local time zone.

        DateTime saveNow = DateTime.Now;

        // Get the date and time for the current moment expressed
        // as coordinated universal time (UTC).

        DateTime saveUtcNow = DateTime.UtcNow;
        DateTime myDt;

        // Display the value and Kind property of the current moment
        // expressed as UTC and local time.

        DisplayNow("UtcNow: ..........", saveUtcNow);
        DisplayNow("Now: .............", saveNow);
        Console.WriteLine();

        // Change the Kind property of the current moment to
        // DateTimeKind.Utc and display the result.

        myDt = DateTime.SpecifyKind(saveNow, DateTimeKind.Utc);
        Display("Utc: .............", myDt);

        // Change the Kind property of the current moment to
        // DateTimeKind.Local and display the result.

        myDt = DateTime.SpecifyKind(saveNow, DateTimeKind.Local);
        Display("Local: ...........", myDt);

        // Change the Kind property of the current moment to
        // DateTimeKind.Unspecified and display the result.

        myDt = DateTime.SpecifyKind(saveNow, DateTimeKind.Unspecified);
        Display("Unspecified: .....", myDt);
    }

    // Display the value and Kind property of a DateTime structure, the
    // DateTime structure converted to local time, and the DateTime
    // structure converted to universal time.

    public static string datePatt = @"M/d/yyyy hh:mm:ss tt";
    public static void Display(string title, DateTime inputDt)
    {
        DateTime dispDt = inputDt;
        string dtString;

        // Display the original DateTime.

        dtString = dispDt.ToString(datePatt);
        Console.WriteLine("{0} {1}, Kind = {2}",
                          title, dtString, dispDt.Kind);

        // Convert inputDt to local time and display the result.
        // If inputDt.Kind is DateTimeKind.Utc, the conversion is performed.
        // If inputDt.Kind is DateTimeKind.Local, the conversion is not performed.
        // If inputDt.Kind is DateTimeKind.Unspecified, the conversion is
        // performed as if inputDt was universal time.

        dispDt = inputDt.ToLocalTime();
        dtString = dispDt.ToString(datePatt);
        Console.WriteLine("  ToLocalTime:     {0}, Kind = {1}",
                          dtString, dispDt.Kind);

        // Convert inputDt to universal time and display the result.
        // If inputDt.Kind is DateTimeKind.Utc, the conversion is not performed.
        // If inputDt.Kind is DateTimeKind.Local, the conversion is performed.
        // If inputDt.Kind is DateTimeKind.Unspecified, the conversion is
        // performed as if inputDt was local time.

        dispDt = inputDt.ToUniversalTime();
        dtString = dispDt.ToString(datePatt);
        Console.WriteLine("  ToUniversalTime: {0}, Kind = {1}",
                          dtString, dispDt.Kind);
        Console.WriteLine();
    }

    // Display the value and Kind property for DateTime.Now and DateTime.UtcNow.

    public static void DisplayNow(string title, DateTime inputDt)
    {
        string dtString = inputDt.ToString(datePatt);
        Console.WriteLine("{0} {1}, Kind = {2}",
                          title, dtString, inputDt.Kind);
    }
}

/*
This code example produces the following results:

UtcNow: .......... 5/6/2005 09:34:42 PM, Kind = Utc
Now: ............. 5/6/2005 02:34:42 PM, Kind = Local

Utc: ............. 5/6/2005 02:34:42 PM, Kind = Utc
  ToLocalTime:     5/6/2005 07:34:42 AM, Kind = Local
  ToUniversalTime: 5/6/2005 02:34:42 PM, Kind = Utc

Local: ........... 5/6/2005 02:34:42 PM, Kind = Local
  ToLocalTime:     5/6/2005 02:34:42 PM, Kind = Local
  ToUniversalTime: 5/6/2005 09:34:42 PM, Kind = Utc

Unspecified: ..... 5/6/2005 02:34:42 PM, Kind = Unspecified
  ToLocalTime:     5/6/2005 07:34:42 AM, Kind = Local
  ToUniversalTime: 5/6/2005 09:34:42 PM, Kind = Utc

*/

Açıklamalar

Eşgüdümlü Evrensel Saat (UTC) yerel saat eksi UTC uzaklığı eşittir. UTC uzaklığı hakkında daha fazla bilgi için bkz TimeZoneInfo.GetUtcOffset. . Dönüştürme, geçerli DateTime nesne tarafından temsil edilen saat için geçerli olan gün ışığından yararlanma saati kuralını da dikkate alır.

Önemli

Windows XP sistemlerinde yöntemi, ToUniversalTime yerel saatten UTC'ye dönüştürürken yalnızca geçerli ayarlama kuralını tanır. Sonuç olarak, geçerli ayarlama kuralı uygulanmadan önceki dönemler için dönüştürmeler yerel saat ile UTC arasındaki farkı doğru yansıtmayabilir.

.NET Framework sürüm 2.0'dan başlayarak, yöntemi tarafından ToUniversalTime döndürülen değer geçerli DateTime nesnenin Kind özelliği tarafından belirlenir. Aşağıdaki tabloda olası sonuçlar açıklanmaktadır.

Tip Sonuçlar
Utc Dönüştürme yapılmaz.
Local Geçerli DateTime nesne UTC'ye dönüştürülür.
Unspecified Geçerli DateTime nesnenin yerel saat olduğu varsayılır ve dönüştürme sanki Kind gibi Localgerçekleştirilir.

Not

yöntemi bir ToUniversalTimeDateTime değeri yerel saatten UTC'ye dönüştürür. Yerel olmayan bir saat dilimindeki saati UTC'ye dönüştürmek için yöntemini kullanın TimeZoneInfo.ConvertTimeToUtc(DateTime, TimeZoneInfo) . UTC'den uzaklığı bilinen bir saati dönüştürmek için yöntemini kullanın ToUniversalTime .

Tarih ve saat örneği değeri belirsiz bir saatse, bu yöntem bunun standart bir saat olduğunu varsayar. (Belirsiz bir saat, standart saatle veya yerel saat dilimindeki yaz saatiyle eşlenebilir saattir) Tarih ve saat örneği değeri geçersiz bir saatse, bu yöntem UTC döndürmek için yerel saati yerel saat diliminin UTC uzaklığından çıkarır. (Geçersiz bir saat, yaz saati ayarlama kurallarının uygulanması nedeniyle var olmayan bir saattir.)

Arayanlara Notlar

ToUniversalTime() yöntemi bazen yerel saati UTC'ye dönüştürmek için kullanılır. Ardından ToLocalTime() özgün yerel saati geri yüklemek için yöntemi çağrılır. Ancak, özgün saat yerel saat diliminde geçersiz bir saati temsil ederse, iki yerel saat değeri eşit olmaz. Ek bilgi ve örnek için yöntemine ToLocalTime() bakın.

Windows XP sistemlerinde ToUniversalTime() , yöntem yalnızca yerel saat dilimi için geçerli ayarlama kuralını tanır. Bu kural, alt düzey tarihler (geçerli ayarlama kuralının başlangıç tarihinden önceki tarihler) dahil olmak üzere tüm tarihler için geçerlidir. Windows XP'de çalıştırılan ve geçmişe dönük olarak doğru yerel tarih ve saat hesaplamaları gerektiren uygulamalar, yerel saat dilimine FindSystemTimeZoneById(String) karşılık gelen bir nesneyi almak ve yöntemini çağırmak için yöntemini kullanarak bu davranışa geçici bir TimeZoneInfo çözüm bulmalıdır ConvertTimeToUtc(DateTime, TimeZoneInfo) .

Aşağıdaki örnekte, ABD Pasifik Saat dilimindeki ToUniversalTime() bir Windows XP sistemindeki ve ConvertTimeToUtc(DateTime, TimeZoneInfo) yöntemleri arasındaki fark gösterilmektedir. İlk iki yöntem çağrısı, geçerli saat dilimi ayarlama kuralını (2007'de yürürlüğe girdi) 2006'daki bir tarihe uygular. Geçerli ayarlama kuralı, Mart ayının ikinci Pazar günü yaz saati uygulamasına geçiş sağlar; 2006'da geçerli olan önceki kural, yaz saati uygulamasına geçişin Nisan ayının ilk Pazar günü gerçekleşmesi için sağlanmıştır. Bu geçmiş tarih ve saat dönüştürme işlemini yalnızca üçüncü yöntem çağrısı doğru şekilde gerçekleştirir.

C#
using System;

public class Example
{
   public static void Main()
   {
      DateTime date1 = new DateTime(2006, 3, 21, 2, 0, 0);

      Console.WriteLine(date1.ToUniversalTime());
      Console.WriteLine(TimeZoneInfo.ConvertTimeToUtc(date1));

      TimeZoneInfo tz = TimeZoneInfo.FindSystemTimeZoneById("Pacific Standard Time");
      Console.WriteLine(TimeZoneInfo.ConvertTimeToUtc(date1, tz));
   }
}
// The example displays the following output on Windows XP systems:
//       3/21/2006 9:00:00 AM
//       3/21/2006 9:00:00 AM
//       3/21/2006 10:00:00 AM

Şunlara uygulanır

Ayrıca bkz.