TimeZoneNotFoundException Construtores

Definição

Inicializa uma nova instância da TimeZoneNotFoundException classe.

Sobrecargas

Name Description
TimeZoneNotFoundException()

Inicializa uma nova instância da TimeZoneNotFoundException classe com uma mensagem fornecida pelo sistema.

TimeZoneNotFoundException(String)

Inicializa uma nova instância da TimeZoneNotFoundException classe com a cadeia de mensagens especificada.

TimeZoneNotFoundException(SerializationInfo, StreamingContext)
Obsoleto.

Inicializa uma nova instância da TimeZoneNotFoundException classe a partir de dados serializados.

TimeZoneNotFoundException(String, Exception)

Inicializa uma nova instância da TimeZoneNotFoundException classe com uma mensagem de erro especificada e uma referência à exceção interna que é a causa dessa exceção.

TimeZoneNotFoundException()

Origem:
TimeZoneNotFoundException.cs
Origem:
TimeZoneNotFoundException.cs
Origem:
TimeZoneNotFoundException.cs
Origem:
TimeZoneNotFoundException.cs
Origem:
TimeZoneNotFoundException.cs

Inicializa uma nova instância da TimeZoneNotFoundException classe com uma mensagem fornecida pelo sistema.

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

Observações

Este é o construtor sem parâmetros da TimeZoneNotFoundException classe. Este construtor inicializa a Message propriedade da nova instância numa mensagem fornecida pelo sistema que descreve o erro, como "O fuso horário 'timeZoneName' não foi encontrado no computador local." Esta mensagem está localizada para a cultura atual do sistema.

Aplica-se a

TimeZoneNotFoundException(String)

Origem:
TimeZoneNotFoundException.cs
Origem:
TimeZoneNotFoundException.cs
Origem:
TimeZoneNotFoundException.cs
Origem:
TimeZoneNotFoundException.cs
Origem:
TimeZoneNotFoundException.cs

Inicializa uma nova instância da TimeZoneNotFoundException classe com a cadeia de mensagens especificada.

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

Parâmetros

message
String

Uma cadeia que descreve a exceção.

Observações

A message cadeia é atribuída à Message propriedade. A corda deve ser localizada para a cultura atual.

Aplica-se a

TimeZoneNotFoundException(SerializationInfo, StreamingContext)

Origem:
TimeZoneNotFoundException.cs
Origem:
TimeZoneNotFoundException.cs
Origem:
TimeZoneNotFoundException.cs
Origem:
TimeZoneNotFoundException.cs
Origem:
TimeZoneNotFoundException.cs

Atenção

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

Inicializa uma nova instância da TimeZoneNotFoundException classe a partir de dados serializados.

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);
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}")>]
new TimeZoneNotFoundException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> TimeZoneNotFoundException
new TimeZoneNotFoundException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> TimeZoneNotFoundException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

Parâmetros

info
SerializationInfo

O objeto que contém os dados serializados.

context
StreamingContext

O fluxo que contém os dados serializados.

Atributos

Exceções

O info parâmetro é null.

-ou-

O context parâmetro é null.

Observações

Este construtor não é chamado diretamente pelo teu código para instanciar o TimeZoneNotFoundException objeto. Em vez disso, é chamado pelo IFormatter método do Deserialize objeto ao desserializar o TimeZoneNotFoundException objeto a partir de um fluxo.

Aplica-se a

TimeZoneNotFoundException(String, Exception)

Origem:
TimeZoneNotFoundException.cs
Origem:
TimeZoneNotFoundException.cs
Origem:
TimeZoneNotFoundException.cs
Origem:
TimeZoneNotFoundException.cs
Origem:
TimeZoneNotFoundException.cs

Inicializa uma nova instância da TimeZoneNotFoundException classe com uma mensagem de erro especificada e uma referência à exceção interna que é a causa dessa exceção.

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)

Parâmetros

message
String

Uma cadeia que descreve a exceção.

innerException
Exception

A exceção que é a causa da exceção atual.

Exemplos

O exemplo seguinte tenta recuperar um fuso horário inexistente, o que gera um TimeZoneNotFoundException. O handler de exceções envolve a exceção num novo TimeZoneNotFoundException objeto, que o handler de exceções devolve ao chamer. O gestor de exceções do chamador apresenta então informações sobre a exceção exterior e a interna.

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

Observações

Normalmente, usas esta TimeZoneNotFoundException sobrecarga para tratar uma exceção num try... catch bloqueio. O innerException parâmetro deve ser uma referência ao objeto exceção tratado no catch bloco, ou pode ser null. Este valor é então atribuído à TimeZoneNotFoundException propriedade do InnerException objeto.

A message cadeia é atribuída à Message propriedade. A corda deve ser localizada para a cultura atual.

Aplica-se a