Share via


TimeZoneNotFoundException Oluşturucular

Tanım

TimeZoneNotFoundException sınıfının yeni bir örneğini başlatır.

Aşırı Yüklemeler

TimeZoneNotFoundException()

Sistem tarafından sağlanan bir iletiyle sınıfının yeni bir örneğini TimeZoneNotFoundException başlatır.

TimeZoneNotFoundException(String)

Belirtilen ileti dizesiyle sınıfının yeni bir örneğini TimeZoneNotFoundException başlatır.

TimeZoneNotFoundException(SerializationInfo, StreamingContext)
Geçersiz.

Serileştirilmiş verilerden sınıfının yeni bir örneğini TimeZoneNotFoundException başlatır.

TimeZoneNotFoundException(String, Exception)

Sınıfın TimeZoneNotFoundException yeni bir örneğini belirtilen bir hata iletisiyle ve bu özel durumun nedeni olan iç özel duruma başvuruyla başlatır.

TimeZoneNotFoundException()

Kaynak:
TimeZoneNotFoundException.cs
Kaynak:
TimeZoneNotFoundException.cs
Kaynak:
TimeZoneNotFoundException.cs

Sistem tarafından sağlanan bir iletiyle sınıfının yeni bir örneğini TimeZoneNotFoundException başlatır.

public:
 TimeZoneNotFoundException();
public TimeZoneNotFoundException ();
Public Sub New ()

Açıklamalar

Bu, sınıfının parametresiz oluşturucusdur TimeZoneNotFoundException . Bu oluşturucu, yeni örneğin özelliğini sistem tarafından sağlanan ve "'timeZoneName' saat dilimi yerel bilgisayarda bulunamadı" gibi hatayı açıklayan bir iletiyle başlatırMessage. Bu ileti geçerli sistem kültürü için yerelleştirilmiştir.

Şunlara uygulanır

TimeZoneNotFoundException(String)

Kaynak:
TimeZoneNotFoundException.cs
Kaynak:
TimeZoneNotFoundException.cs
Kaynak:
TimeZoneNotFoundException.cs

Belirtilen ileti dizesiyle sınıfının yeni bir örneğini TimeZoneNotFoundException başlatır.

public:
 TimeZoneNotFoundException(System::String ^ message);
public TimeZoneNotFoundException (string? message);
public TimeZoneNotFoundException (string message);
new TimeZoneNotFoundException : string -> TimeZoneNotFoundException
Public Sub New (message As String)

Parametreler

message
String

Özel durumu açıklayan bir dize.

Açıklamalar

Dize message özelliğine Message atanır. Dize geçerli kültür için yerelleştirilmelidir.

Şunlara uygulanır

TimeZoneNotFoundException(SerializationInfo, StreamingContext)

Kaynak:
TimeZoneNotFoundException.cs
Kaynak:
TimeZoneNotFoundException.cs
Kaynak:
TimeZoneNotFoundException.cs

Dikkat

This API supports obsolete formatter-based serialization. It should not be called or extended by application code.

Serileştirilmiş verilerden sınıfının yeni bir örneğini TimeZoneNotFoundException başlatır.

protected:
 TimeZoneNotFoundException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected TimeZoneNotFoundException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
protected TimeZoneNotFoundException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new TimeZoneNotFoundException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> TimeZoneNotFoundException
[<System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
new TimeZoneNotFoundException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> TimeZoneNotFoundException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

Parametreler

info
SerializationInfo

Seri hale getirilmiş verileri içeren nesne.

context
StreamingContext

Seri hale getirilmiş verileri içeren akış.

Öznitelikler

Özel durumlar

info parametresidirnull.

-veya-

context parametresidirnull.

Açıklamalar

Bu oluşturucu, nesnesinin TimeZoneNotFoundException örneğini oluşturmak için doğrudan kodunuz tarafından çağrılmıyor. Bunun yerine, bir akıştan nesne Deserialize seri durumdan IFormatter çıkarılırken nesnenin TimeZoneNotFoundException yöntemi tarafından çağrılır.

Şunlara uygulanır

TimeZoneNotFoundException(String, Exception)

Kaynak:
TimeZoneNotFoundException.cs
Kaynak:
TimeZoneNotFoundException.cs
Kaynak:
TimeZoneNotFoundException.cs

Sınıfın TimeZoneNotFoundException yeni bir örneğini belirtilen bir hata iletisiyle ve bu özel durumun nedeni olan iç özel duruma başvuruyla başlatır.

public:
 TimeZoneNotFoundException(System::String ^ message, Exception ^ innerException);
public TimeZoneNotFoundException (string? message, Exception? innerException);
public TimeZoneNotFoundException (string message, Exception innerException);
new TimeZoneNotFoundException : string * Exception -> TimeZoneNotFoundException
Public Sub New (message As String, innerException As Exception)

Parametreler

message
String

Özel durumu açıklayan bir dize.

innerException
Exception

Geçerli özel durumun nedeni olan özel durum.

Örnekler

Aşağıdaki örnek, bir oluşturan TimeZoneNotFoundExceptionvar olmayan bir saat dilimini almaya çalışır. Özel durum işleyicisi, özel durum işleyicisinin çağırana döndürdüğü özel durumu yeni TimeZoneNotFoundException bir nesnede sarmalar. Çağıranın özel durum işleyicisi daha sonra hem dış hem de iç özel durum hakkındaki bilgileri görüntüler.

private void HandleInnerException()
{   
   string timeZoneName = "Any Standard Time";
   TimeZoneInfo tz;
   try
   {
      tz = RetrieveTimeZone(timeZoneName);
      Console.WriteLine("The time zone display name is {0}.", tz.DisplayName);
   }
   catch (TimeZoneNotFoundException e)
   {
      Console.WriteLine("{0} thrown by application", e.GetType().Name);
      Console.WriteLine("   Message: {0}", e.Message);
      if (e.InnerException != null)
      {
         Console.WriteLine("   Inner Exception Information:");
         Exception innerEx = e.InnerException;
         while (innerEx != null)
         {
            Console.WriteLine("      {0}: {1}", innerEx.GetType().Name, innerEx.Message);
            innerEx = innerEx.InnerException;
         }
      }            
   }   
}

private TimeZoneInfo RetrieveTimeZone(string tzName)
{
   try
   {
      return TimeZoneInfo.FindSystemTimeZoneById(tzName);
   }   
   catch (TimeZoneNotFoundException ex1)
   {
      throw new TimeZoneNotFoundException( 
            String.Format("The time zone '{0}' cannot be found.", tzName), 
            ex1);
   }          
   catch (InvalidTimeZoneException ex2)
   {
      throw new InvalidTimeZoneException( 
            String.Format("The time zone {0} contains invalid data.", tzName), 
            ex2); 
   }      
}
open System

let retrieveTimeZone tzName =
    try
        TimeZoneInfo.FindSystemTimeZoneById tzName
    with 
    | :? TimeZoneNotFoundException as ex1 ->
        raise (TimeZoneNotFoundException($"The time zone '{tzName}' cannot be found.", ex1) )
    | :? InvalidTimeZoneException as ex2 ->
        raise (InvalidTimeZoneException($"The time zone {tzName} contains invalid data.", ex2) )

let handleInnerException () =
    let timeZoneName = "Any Standard Time"
    try
        let tz = retrieveTimeZone timeZoneName
        printfn $"The time zone display name is {tz.DisplayName}."
    with :? TimeZoneNotFoundException as e ->
        printfn $"{e.GetType().Name} thrown by application"
        printfn $"   Message: {e.Message}" 
        if e.InnerException <> null then
            printfn "   Inner Exception Information:"
            let rec printInner (innerEx: exn) =
                if innerEx <> null then
                    printfn $"      {innerEx.GetType().Name}: {innerEx.Message}"
                    printInner innerEx.InnerException
            printInner e
Private Sub HandleInnerException()
   Dim timeZoneName As String = "Any Standard Time"
   Dim tz As TimeZoneInfo
   Try
      tz = RetrieveTimeZone(timeZoneName)
      Console.WriteLine("The time zone display name is {0}.", tz.DisplayName)
   Catch e As TimeZoneNotFoundException
      Console.WriteLine("{0} thrown by application", e.GetType().Name)
      Console.WriteLine("   Message: {0}", e.Message)
      If e.InnerException IsNot Nothing Then
         Console.WriteLine("   Inner Exception Information:")
         Dim innerEx As Exception = e.InnerException
         Do
            Console.WriteLine("      {0}: {1}", innerEx.GetType().Name, innerEx.Message)
            innerEx = innerEx.InnerException
         Loop While innerEx IsNot Nothing
      End If            
   End Try   
End Sub

Private Function RetrieveTimeZone(tzName As String) As TimeZoneInfo
   Try
      Return TimeZoneInfo.FindSystemTimeZoneById(tzName)
   Catch ex1 As TimeZoneNotFoundException
      Throw New TimeZoneNotFoundException( _
            String.Format("The time zone '{0}' cannot be found.", tzName), _
            ex1) 
   Catch ex2 As InvalidTimeZoneException
      Throw New InvalidTimeZoneException( _
            String.Format("The time zone {0} contains invalid data.", tzName), _
            ex2) 
   End Try      
End Function

Açıklamalar

Genellikle, bir özel durumu tryişlemek için bu TimeZoneNotFoundException aşırı yüklemeyi kullanırsınız...catch Blok. innerException parametresi, bloğunda işlenen özel durum nesnesine catch bir başvuru olmalıdır veya olabilirnull. Bu değer daha sonra nesnenin InnerException özelliğine TimeZoneNotFoundException atanır.

Dize message özelliğine Message atanır. Dize geçerli kültür için yerelleştirilmelidir.

Şunlara uygulanır