mscorlib(4.0.0.0) API with additions
XmlReflectionMember.cs
2 {
4  public class XmlReflectionMember
5  {
6  private string memberName;
7 
8  private Type type;
9 
10  private XmlAttributes xmlAttributes = new XmlAttributes();
11 
12  private SoapAttributes soapAttributes = new SoapAttributes();
13 
14  private bool isReturnValue;
15 
16  private bool overrideIsNullable;
17 
20  public Type MemberType
21  {
22  get
23  {
24  return type;
25  }
26  set
27  {
28  type = value;
29  }
30  }
31 
35  {
36  get
37  {
38  return xmlAttributes;
39  }
40  set
41  {
42  xmlAttributes = value;
43  }
44  }
45 
49  {
50  get
51  {
52  return soapAttributes;
53  }
54  set
55  {
56  soapAttributes = value;
57  }
58  }
59 
62  public string MemberName
63  {
64  get
65  {
66  if (memberName != null)
67  {
68  return memberName;
69  }
70  return string.Empty;
71  }
72  set
73  {
74  memberName = value;
75  }
76  }
77 
81  public bool IsReturnValue
82  {
83  get
84  {
85  return isReturnValue;
86  }
87  set
88  {
89  isReturnValue = value;
90  }
91  }
92 
96  public bool OverrideIsNullable
97  {
98  get
99  {
100  return overrideIsNullable;
101  }
102  set
103  {
104  overrideIsNullable = value;
105  }
106  }
107  }
108 }
Represents a collection of attribute objects that control how the T:System.Xml.Serialization....
Provides mappings between code entities in .NET Framework Web service methods and the content of Web ...
XmlAttributes XmlAttributes
Gets or sets an T:System.Xml.Serialization.XmlAttributes with the collection of T:System....
Represents type declarations: class types, interface types, array types, value types,...
Definition: Type.cs:18
Represents a collection of attribute objects that control how the T:System.Xml.Serialization....
Definition: XmlAttributes.cs:8
bool OverrideIsNullable
Gets or sets a value that indicates that the value of the corresponding XML element definition's isNu...
SoapAttributes SoapAttributes
Gets or sets a T:System.Xml.Serialization.SoapAttributes with the collection of SOAP-related attribut...
string MemberName
Gets or sets the name of the Web service method member for this mapping.
Type MemberType
Gets or sets the type of the Web service method member code entity that is represented by this mappin...
bool IsReturnValue
Gets or sets a value that indicates whether the T:System.Xml.Serialization.XmlReflectionMember repres...