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