Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlIncludeAttribute.cs
Go to the documentation of this file.
1
namespace
System.Xml.Serialization
;
2
3
[
AttributeUsage
(
AttributeTargets
.Class |
AttributeTargets
.Struct |
AttributeTargets
.Method |
AttributeTargets
.Interface, AllowMultiple =
true
)]
4
public
class
XmlIncludeAttribute
:
Attribute
5
{
6
private
Type
_type
;
7
8
public
Type
?
Type
9
{
10
get
11
{
12
return
_type
;
13
}
14
set
15
{
16
_type
=
value
;
17
}
18
}
19
20
public
XmlIncludeAttribute
(
Type
?
type
)
21
{
22
_type
=
type
;
23
}
24
}
System.Attribute
Definition
Attribute.cs:12
System.Type
Definition
Type.cs:14
System.Xml.Serialization.XmlIncludeAttribute._type
Type _type
Definition
XmlIncludeAttribute.cs:6
System.Xml.Serialization.XmlIncludeAttribute.XmlIncludeAttribute
XmlIncludeAttribute(Type? type)
Definition
XmlIncludeAttribute.cs:20
System.Xml.Serialization.XmlIncludeAttribute
Definition
XmlIncludeAttribute.cs:5
System.Xml.Serialization
Definition
DateTimeSerializationSection.cs:1
System.Xml.ValueHandleType.Dictionary
@ Dictionary
System.ExceptionArgument.value
@ value
System.ExceptionArgument.type
@ type
System.AttributeTargets
AttributeTargets
Definition
AttributeTargets.cs:5
source
System.Private.Xml
System.Xml.Serialization
XmlIncludeAttribute.cs
Generated by
1.10.0