Merge pull request #2454 from tastywheattasteslikechicken/FixVtableAbort
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Protocols / SoapHeaderHandling.cs
1 // 
2 // SoapHeaderHandling.cs
3 //
4 // Author:
5 //   Atsushi Enomoto  <atsushi@ximian.com>
6 //
7 // Copyright (C) 2006 Novell, Inc.
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31
32 using System.Reflection;
33 using System.Xml;
34 using System.Xml.Serialization;
35
36 namespace System.Web.Services.Protocols
37 {
38         public sealed class SoapHeaderHandling
39         {
40                 // static members
41
42                 [MonoTODO]
43                 public static void EnsureHeadersUnderstood (SoapHeaderCollection headers)
44                 {
45                         throw new NotImplementedException ();
46                 }
47
48                 [MonoTODO]
49                 public static void GetHeaderMembers (
50                         SoapHeaderCollection headers,
51                         object target,
52                         SoapHeaderMapping [] mappings,
53                         SoapHeaderDirection direction,
54                         bool client)
55                 {
56                         throw new NotImplementedException ();
57                 }
58
59                 [MonoTODO]
60                 public static void SetHeaderMembers (
61                         SoapHeaderCollection headers,
62                         object target,
63                         SoapHeaderMapping [] mappings,
64                         SoapHeaderDirection direction,
65                         bool client)
66                 {
67                         throw new NotImplementedException ();
68                 }
69
70                 [MonoTODO]
71                 public static void WriteHeaders (
72                         XmlWriter writer,
73                         XmlSerializer serializer,
74                         SoapHeaderCollection headers,
75                         SoapHeaderMapping [] mappings,
76                         SoapHeaderDirection direction,
77                         bool isEncoded,
78                         string defaultNS,
79                         bool serviceDefaultIsEncoded,
80                         string envelopeNS)
81                 {
82                         throw new NotImplementedException ();
83                 }
84
85                 [MonoTODO]
86                 public static void WriteUnknownHeaders (
87                         XmlWriter writer,
88                         SoapHeaderCollection headers,
89                         string envelopeNS)
90                 {
91                         throw new NotImplementedException ();
92                 }
93
94                 // instance members
95
96                 public SoapHeaderHandling ()
97                 {
98                 }
99
100                 [MonoTODO]
101                 public string ReadHeaders (
102                         XmlReader reader,
103                         XmlSerializer serializer,
104                         SoapHeaderCollection headers,
105                         SoapHeaderMapping [] mappings,
106                         SoapHeaderDirection direction,
107                         string envelopeNS,
108                         string encodingStyle,
109                         bool checkRequiredHeaders)
110                 {
111                         throw new NotImplementedException ();
112                 }
113         }
114 }
115