mscorlib(4.0.0.0) API with additions
TimeZoneNotFoundException.cs
4 
5 namespace System
6 {
9  [TypeForwardedFrom("System.Core, Version=3.5.0.0, Culture=Neutral, PublicKeyToken=b77a5c561934e089")]
10  [HostProtection(SecurityAction.LinkDemand, MayLeakOnAbort = true)]
12  {
15  public TimeZoneNotFoundException(string message)
16  : base(message)
17  {
18  }
19 
23  public TimeZoneNotFoundException(string message, Exception innerException)
24  : base(message, innerException)
25  {
26  }
27 
33  : base(info, context)
34  {
35  }
36 
39  {
40  }
41  }
42 }
Definition: __Canon.cs:3
TimeZoneNotFoundException()
Initializes a new instance of the T:System.TimeZoneNotFoundException class with a system-supplied mes...
Describes the source and destination of a given serialized stream, and provides an additional caller-...
The exception that is thrown when a time zone cannot be found.
SecurityAction
Specifies the security actions that can be performed using declarative security.
Stores all the data needed to serialize or deserialize an object. This class cannot be inherited.
Represents errors that occur during application execution.To browse the .NET Framework source code fo...
Definition: Exception.cs:22
TimeZoneNotFoundException(string message)
Initializes a new instance of the T:System.TimeZoneNotFoundException class with the specified message...
Specifies that the class can be serialized.
TimeZoneNotFoundException(SerializationInfo info, StreamingContext context)
Initializes a new instance of the T:System.TimeZoneNotFoundException class from serialized data.
TimeZoneNotFoundException(string message, Exception innerException)
Initializes a new instance of the T:System.TimeZoneNotFoundException class with a specified error mes...