Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
TypeForwardedFromAttribute.cs
Go to the documentation of this file.
1
namespace
System.Runtime.CompilerServices
;
2
3
[AttributeUsage(
AttributeTargets
.Class |
AttributeTargets
.Struct |
AttributeTargets
.Enum |
AttributeTargets
.Interface |
AttributeTargets
.Delegate, Inherited =
false
, AllowMultiple =
false
)]
4
public
sealed
class
TypeForwardedFromAttribute
:
Attribute
5
{
6
public
string
AssemblyFullName
{
get
; }
7
8
public
TypeForwardedFromAttribute
(
string
assemblyFullName)
9
{
10
if
(
string
.IsNullOrEmpty(assemblyFullName))
11
{
12
throw
new
ArgumentNullException
(
"assemblyFullName"
);
13
}
14
AssemblyFullName
= assemblyFullName;
15
}
16
}
System.ArgumentNullException
Definition
ArgumentNullException.cs:10
System.Attribute
Definition
Attribute.cs:12
System.Runtime.CompilerServices.TypeForwardedFromAttribute.AssemblyFullName
string AssemblyFullName
Definition
TypeForwardedFromAttribute.cs:6
System.Runtime.CompilerServices.TypeForwardedFromAttribute.TypeForwardedFromAttribute
TypeForwardedFromAttribute(string assemblyFullName)
Definition
TypeForwardedFromAttribute.cs:8
System.Runtime.CompilerServices.TypeForwardedFromAttribute
Definition
TypeForwardedFromAttribute.cs:5
System.Runtime.CompilerServices
Definition
NullablePublicOnlyAttribute.cs:3
System.AttributeTargets
AttributeTargets
Definition
AttributeTargets.cs:5
source
System.Private.CoreLib
System.Runtime.CompilerServices
TypeForwardedFromAttribute.cs
Generated by
1.10.0