mscorlib(4.0.0.0) API with additions
TimeZoneNotFoundException.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
[HostProtection(
SecurityAction
.LinkDemand, MayLeakOnAbort =
true
)]
11
public
class
TimeZoneNotFoundException
:
Exception
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
32
protected
TimeZoneNotFoundException
(
SerializationInfo
info,
StreamingContext
context)
33
: base(info, context)
34
{
35
}
36
38
public
TimeZoneNotFoundException
()
39
{
40
}
41
}
42
}
System.Security
Definition:
AllowPartiallyTrustedCallersAttribute.cs:3
System.Runtime
Definition:
AssemblyTargetedPatchBandAttribute.cs:1
System
Definition:
__Canon.cs:3
System.TimeZoneNotFoundException.TimeZoneNotFoundException
TimeZoneNotFoundException()
Initializes a new instance of the T:System.TimeZoneNotFoundException class with a system-supplied mes...
Definition:
TimeZoneNotFoundException.cs:38
System.Runtime.Serialization.StreamingContext
Describes the source and destination of a given serialized stream, and provides an additional caller-...
Definition:
StreamingContext.cs:9
System.TimeZoneNotFoundException
The exception that is thrown when a time zone cannot be found.
Definition:
TimeZoneNotFoundException.cs:11
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.Runtime.Serialization
Definition:
DeserializationEventHandler.cs:1
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.Exception
Represents errors that occur during application execution.To browse the .NET Framework source code fo...
Definition:
Exception.cs:22
System.TimeZoneNotFoundException.TimeZoneNotFoundException
TimeZoneNotFoundException(string message)
Initializes a new instance of the T:System.TimeZoneNotFoundException class with the specified message...
Definition:
TimeZoneNotFoundException.cs:15
System.Reflection.TypeAttributes.Serializable
Specifies that the class can be serialized.
System.Security.Permissions
Definition:
BuiltInPermissionFlag.cs:1
System.TimeZoneNotFoundException.TimeZoneNotFoundException
TimeZoneNotFoundException(SerializationInfo info, StreamingContext context)
Initializes a new instance of the T:System.TimeZoneNotFoundException class from serialized data.
Definition:
TimeZoneNotFoundException.cs:32
System.TimeZoneNotFoundException.TimeZoneNotFoundException
TimeZoneNotFoundException(string message, Exception innerException)
Initializes a new instance of the T:System.TimeZoneNotFoundException class with a specified error mes...
Definition:
TimeZoneNotFoundException.cs:23
All cs
System
TimeZoneNotFoundException.cs
Generated by
1.8.15