Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SoapSchemaMember.cs
Go to the documentation of this file.
1
using
System.Diagnostics.CodeAnalysis
;
2
3
namespace
System.Xml.Serialization
;
4
5
public
class
SoapSchemaMember
6
{
7
private
string
_memberName
;
8
9
private
XmlQualifiedName
_type
=
XmlQualifiedName
.
Empty
;
10
11
public
XmlQualifiedName
?
MemberType
12
{
13
get
14
{
15
return
_type
;
16
}
17
set
18
{
19
_type
=
value
;
20
}
21
}
22
23
public
string
MemberName
24
{
25
get
26
{
27
if
(
_memberName
!=
null
)
28
{
29
return
_memberName
;
30
}
31
return
string
.Empty;
32
}
33
[
param
:
AllowNull
]
34
set
35
{
36
_memberName
=
value
;
37
}
38
}
39
}
System.Xml.Serialization.SoapSchemaMember.MemberType
XmlQualifiedName? MemberType
Definition
SoapSchemaMember.cs:12
System.Xml.Serialization.SoapSchemaMember._type
XmlQualifiedName _type
Definition
SoapSchemaMember.cs:9
System.Xml.Serialization.SoapSchemaMember._memberName
string _memberName
Definition
SoapSchemaMember.cs:7
System.Xml.Serialization.SoapSchemaMember.MemberName
string MemberName
Definition
SoapSchemaMember.cs:24
System.Xml.Serialization.SoapSchemaMember
Definition
SoapSchemaMember.cs:6
System.Xml.XmlQualifiedName.Empty
static readonly XmlQualifiedName Empty
Definition
XmlQualifiedName.cs:13
System.Xml.XmlQualifiedName
Definition
XmlQualifiedName.cs:6
System.Diagnostics.CodeAnalysis
Definition
AllowNullAttribute.cs:1
System.Xml.Serialization
Definition
DateTimeSerializationSection.cs:1
System.Xml.ValueHandleType.Dictionary
@ Dictionary
System.ExceptionArgument.value
@ value
source
System.Private.Xml
System.Xml.Serialization
SoapSchemaMember.cs
Generated by
1.10.0