Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IsolatedStorageException.cs
Go to the documentation of this file.
1
using
System.Runtime.CompilerServices
;
2
using
System.Runtime.Serialization
;
3
4
namespace
System.IO.IsolatedStorage
;
5
6
[
Serializable
]
7
[
TypeForwardedFrom
(
"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
)]
8
public
class
IsolatedStorageException
:
Exception
,
ISerializable
9
{
10
internal
Exception
_underlyingException
;
11
12
public
IsolatedStorageException
()
13
:
base
(
System
.
SR
.IsolatedStorage_Exception)
14
{
15
base.HResult
= -2146233264;
16
}
17
18
public
IsolatedStorageException
(
string
? message)
19
:
base
(message)
20
{
21
base.HResult
= -2146233264;
22
}
23
24
public
IsolatedStorageException
(
string
? message,
Exception
? inner)
25
:
base
(message, inner)
26
{
27
base.HResult
= -2146233264;
28
}
29
30
protected
IsolatedStorageException
(
SerializationInfo
info
,
StreamingContext
context)
31
:
base
(
info
, context)
32
{
33
}
34
}
System.Exception
Definition
Exception.cs:15
System.IO.IsolatedStorage.IsolatedStorageException.IsolatedStorageException
IsolatedStorageException(string? message, Exception? inner)
Definition
IsolatedStorageException.cs:24
System.IO.IsolatedStorage.IsolatedStorageException.IsolatedStorageException
IsolatedStorageException()
Definition
IsolatedStorageException.cs:12
System.IO.IsolatedStorage.IsolatedStorageException.IsolatedStorageException
IsolatedStorageException(SerializationInfo info, StreamingContext context)
Definition
IsolatedStorageException.cs:30
System.IO.IsolatedStorage.IsolatedStorageException._underlyingException
Exception _underlyingException
Definition
IsolatedStorageException.cs:10
System.IO.IsolatedStorage.IsolatedStorageException.IsolatedStorageException
IsolatedStorageException(string? message)
Definition
IsolatedStorageException.cs:18
System.IO.IsolatedStorage.IsolatedStorageException
Definition
IsolatedStorageException.cs:9
System.Runtime.Serialization.SerializationInfo
Definition
SerializationInfo.cs:7
System.SR
Definition
SR.cs:7
System.Runtime.Serialization.ISerializable
Definition
ISerializable.cs:4
System.Data.IsolationLevel.Serializable
@ Serializable
System.IO.IsolatedStorage
Definition
Helper.cs:8
System.Runtime.CompilerServices
Definition
NullablePublicOnlyAttribute.cs:3
System.Runtime.Serialization.CollectionKind.Dictionary
@ Dictionary
System.Runtime.Serialization
Definition
SerializationGuard.cs:3
System.ExceptionArgument.info
@ info
System
Definition
BlockingCollection.cs:8
System.Runtime.Serialization.StreamingContext
Definition
StreamingContext.cs:6
source
System.IO.IsolatedStorage
System.IO.IsolatedStorage
IsolatedStorageException.cs
Generated by
1.10.0