mscorlib(4.0.0.0) API with additions
InvalidTimeZoneException.cs
1
using
System
.
Runtime
.
CompilerServices
;
2
using
System
.
Runtime
.
Serialization
;
3
using
System
.
Security
.
Permissions
;
4
5
namespace
System
6
{
8
[
Serializable
]
9
[TypeForwardedFrom(
"System.Core, Version=3.5.0.0, Culture=Neutral, PublicKeyToken=b77a5c561934e089"
)]
10
[__DynamicallyInvokable]
11
[HostProtection(
SecurityAction
.LinkDemand, MayLeakOnAbort =
true
)]
12
public
class
InvalidTimeZoneException
:
Exception
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
35
protected
InvalidTimeZoneException
(
SerializationInfo
info,
StreamingContext
context)
36
: base(info, context)
37
{
38
}
39
41
[__DynamicallyInvokable]
42
public
InvalidTimeZoneException
()
43
{
44
}
45
}
46
}
System.Security
Definition:
AllowPartiallyTrustedCallersAttribute.cs:3
System.InvalidTimeZoneException.InvalidTimeZoneException
InvalidTimeZoneException(string message)
Initializes a new instance of the T:System.InvalidTimeZoneException class with the specified message ...
Definition:
InvalidTimeZoneException.cs:17
System.Runtime
Definition:
AssemblyTargetedPatchBandAttribute.cs:1
System
Definition:
__Canon.cs:3
System.Runtime.Serialization.StreamingContext
Describes the source and destination of a given serialized stream, and provides an additional caller-...
Definition:
StreamingContext.cs:9
System.Runtime.CompilerServices
Definition:
AccessedThroughPropertyAttribute.cs:3
System.Security.Permissions.SecurityAction
SecurityAction
Specifies the security actions that can be performed using declarative security.
Definition:
SecurityAction.cs:8
System.InvalidTimeZoneException.InvalidTimeZoneException
InvalidTimeZoneException()
Initializes a new instance of the T:System.InvalidTimeZoneException class with a system-supplied mess...
Definition:
InvalidTimeZoneException.cs:42
System.Runtime.Serialization
Definition:
DeserializationEventHandler.cs:1
System.InvalidTimeZoneException.InvalidTimeZoneException
InvalidTimeZoneException(string message, Exception innerException)
Initializes a new instance of the T:System.InvalidTimeZoneException class with a specified error mess...
Definition:
InvalidTimeZoneException.cs:26
System.Runtime.Serialization.SerializationInfo
Stores all the data needed to serialize or deserialize an object. This class cannot be inherited.
Definition:
SerializationInfo.cs:12
System.InvalidTimeZoneException.InvalidTimeZoneException
InvalidTimeZoneException(SerializationInfo info, StreamingContext context)
Initializes a new instance of the T:System.InvalidTimeZoneException class from serialized data.
Definition:
InvalidTimeZoneException.cs:35
System.Exception
Represents errors that occur during application execution.To browse the .NET Framework source code fo...
Definition:
Exception.cs:22
System.Reflection.TypeAttributes.Serializable
Specifies that the class can be serialized.
System.InvalidTimeZoneException
The exception that is thrown when time zone information is invalid.
Definition:
InvalidTimeZoneException.cs:12
System.Security.Permissions
Definition:
BuiltInPermissionFlag.cs:1
All cs
System
InvalidTimeZoneException.cs
Generated by
1.8.15