b65b0821a079454276c4b0f8f89334f78b7ea3f9
[mono.git] / mcs / class / System.ServiceModel / System.ServiceModel.Description / MessagePartDescription.cs
1 //
2 // MessagePartDescription.cs
3 //
4 // Author:
5 //      Atsushi Enomoto <atsushi@ximian.com>
6 //
7 // Copyright (C) 2005 Novell, Inc.  http://www.novell.com
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 // 
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 // 
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28 using System;
29 using System.Collections.Generic;
30 using System.Diagnostics;
31 using System.Net.Security;
32 using System.Runtime.Serialization;
33 using System.Reflection;
34 using System.Xml;
35 using System.Xml.Serialization;
36
37 namespace System.ServiceModel.Description
38 {
39         [DebuggerDisplay ("Name={name}, Namespace={ns}, Type={Type}, Index={index}}")]
40         public class MessagePartDescription
41         {
42                 int index;
43                 MemberInfo member;
44                 bool multiple;
45                 Type type;
46                 string name, ns;
47                 bool has_protection_level;
48                 ProtectionLevel protection_level;
49
50                 private XmlQualifiedName xml_schema_type_name;
51                 private XmlTypeMapping xml_type_mapping;
52                 
53                 public MessagePartDescription (string name, string ns)
54                 {
55                         this.name = name;
56                         this.ns = ns;
57                         XmlName = new XmlName (name);
58                 }
59
60                 public int Index {
61                         get { return index; }
62                         set { index = value; }
63                 }
64
65                 public MemberInfo MemberInfo {
66                         get { return member; }
67                         set { member = value; }
68                 }
69
70                 public string Name {
71                         get { return name; }
72                 }
73
74                 public string Namespace {
75                         get { return ns; }
76                 }
77
78                 public bool HasProtectionLevel {
79                         get { return has_protection_level; }
80                 }
81
82                 public ProtectionLevel ProtectionLevel {
83                         get { return protection_level; }
84                         set {
85                                 protection_level = value;
86                                 has_protection_level = true;
87                         }
88                 }
89
90                 public bool Multiple {
91                         get { return multiple; }
92                         set { multiple = value; }
93                 }
94
95                 public Type Type {
96                         get { return type; }
97                         set { type = value; }
98                 }
99
100 #if !NET_2_1
101                 internal XsdDataContractImporter Importer { get; set; }
102                 internal System.CodeDom.CodeTypeReference CodeTypeReference { get; set; }
103 #endif
104
105                 #region internals required for moonlight compatibility
106
107                 internal XmlName XmlName {
108                         get; private set;
109                 }
110
111                 ICustomAttributeProvider additional_att_provider;
112
113                 internal ICustomAttributeProvider AdditionalAttributesProvider {
114                         get { return additional_att_provider ?? MemberInfo; }
115                         set { additional_att_provider = value; }
116                 }
117
118                 internal int SerializationPosition { get; set; }
119
120                 #endregion
121         }
122 }