Merge pull request #4453 from lambdageek/bug-49721
[mono.git] / mcs / class / System.ServiceModel / System.ServiceModel.Description / XmlSerializerOperationBehavior.cs
1 //
2 // XmlSerializerOperationBehavior.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.ObjectModel;
30 using System.ServiceModel;
31 using System.ServiceModel.Channels;
32 using System.ServiceModel.Dispatcher;
33 using System.Xml.Serialization;
34
35 namespace System.ServiceModel.Description
36 {
37         public class XmlSerializerOperationBehavior
38                 : IOperationBehavior
39 #if !MOBILE
40                         , IWsdlExportExtension
41 #endif
42         {
43                 XmlSerializerFormatAttribute format;
44                 OperationDescription operation;
45
46                 public XmlSerializerOperationBehavior (
47                         OperationDescription operation)
48                         : this (operation, null)
49                 {
50                 }
51
52                 public XmlSerializerOperationBehavior (
53                         OperationDescription operation,
54                         XmlSerializerFormatAttribute attribute)
55                 {
56                         if (operation == null)
57                                 throw new ArgumentNullException ("operation");
58                         if (attribute == null)
59                                 attribute = new XmlSerializerFormatAttribute ();
60                         this.format = attribute;
61                         this.operation = operation;
62                 }
63
64                 [MonoTODO]
65                 public Collection<XmlMapping> GetXmlMappings ()
66                 {
67                         throw new NotImplementedException ();
68                 }
69
70                 public XmlSerializerFormatAttribute XmlSerializerFormatAttribute {
71                         get { return format; }
72                 }
73
74                 void IOperationBehavior.AddBindingParameters (
75                         OperationDescription description,
76                         BindingParameterCollection parameters)
77                 {
78                 }
79                 
80                 void IOperationBehavior.ApplyDispatchBehavior (
81                         OperationDescription description,
82                         DispatchOperation dispatch)
83                 {
84                         if (description == null)
85                                 throw new ArgumentNullException ("description");
86                         if (dispatch == null)
87                                 throw new ArgumentNullException ("dispatch");
88                         dispatch.Formatter = new XmlMessagesFormatter (description, format);
89                 }
90
91                 void IOperationBehavior.ApplyClientBehavior (
92                         OperationDescription description,
93                         ClientOperation proxy)
94                 {
95                         if (description == null)
96                                 throw new ArgumentNullException ("description");
97                         if (proxy == null)
98                                 throw new ArgumentNullException ("proxy");
99                         proxy.Formatter = new XmlMessagesFormatter (description, format);
100                 }
101
102                 void IOperationBehavior.Validate (
103                         OperationDescription description)
104                 {
105                 }
106
107 #if !MOBILE && !XAMMAC_4_5
108                 void IWsdlExportExtension.ExportContract (
109                         WsdlExporter exporter,
110                         WsdlContractConversionContext context)
111                 {
112                         throw new NotImplementedException ();
113                 }
114
115                 void IWsdlExportExtension.ExportEndpoint (WsdlExporter exporter,
116                         WsdlEndpointConversionContext context)
117                 {
118                         throw new NotImplementedException ();
119                 }
120 #endif
121         }
122 }