[tests] Separate MONO_PATH directories by PLATFORM_PATH_SEPARATOR
[mono.git] / mcs / class / System.ServiceModel / System.ServiceModel.Configuration / TextMessageEncodingElement.cs
1 //
2 // TextMessageEncodingElement.cs
3 //
4 // Author:
5 //      Atsushi Enomoto <atsushi@ximian.com>
6 //
7 // Copyright (C) 2006 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
29 using System;
30 using System.Collections;
31 using System.Collections.Generic;
32 using System.Collections.ObjectModel;
33 using System.ComponentModel;
34 using System.Configuration;
35 using System.Net;
36 using System.Net.Security;
37 using System.Reflection;
38 using System.Security.Cryptography.X509Certificates;
39 using System.Security.Principal;
40 using System.IdentityModel.Claims;
41 using System.IdentityModel.Policy;
42 using System.IdentityModel.Tokens;
43 using System.ServiceModel;
44 using System.ServiceModel.Channels;
45 using System.ServiceModel.Description;
46 using System.ServiceModel.Diagnostics;
47 using System.ServiceModel.Dispatcher;
48 using System.ServiceModel.MsmqIntegration;
49 using System.ServiceModel.PeerResolvers;
50 using System.ServiceModel.Security;
51 using System.Runtime.Serialization;
52 using System.Text;
53 using System.Xml;
54
55 namespace System.ServiceModel.Configuration
56 {
57         public sealed class TextMessageEncodingElement
58                  : BindingElementExtensionElement
59         {
60                 public TextMessageEncodingElement () {
61                 }
62
63
64                 // Properties
65
66                 public override Type BindingElementType {
67                         get { return typeof (TextMessageEncodingBindingElement); }
68                 }
69
70                 [ConfigurationProperty ("maxReadPoolSize",
71                          Options = ConfigurationPropertyOptions.None,
72                          DefaultValue = "64")]
73                 [IntegerValidator (MinValue = 1,
74                         MaxValue = int.MaxValue,
75                         ExcludeRange = false)]
76                 public int MaxReadPoolSize {
77                         get { return (int) base ["maxReadPoolSize"]; }
78                         set { base ["maxReadPoolSize"] = value; }
79                 }
80
81                 [ConfigurationProperty ("maxWritePoolSize",
82                          Options = ConfigurationPropertyOptions.None,
83                          DefaultValue = "16")]
84                 [IntegerValidator (MinValue = 1,
85                         MaxValue = int.MaxValue,
86                         ExcludeRange = false)]
87                 public int MaxWritePoolSize {
88                         get { return (int) base ["maxWritePoolSize"]; }
89                         set { base ["maxWritePoolSize"] = value; }
90                 }
91
92                 [ConfigurationProperty ("messageVersion",
93                          Options = ConfigurationPropertyOptions.None,
94                          DefaultValue = "Soap12WSAddressing10")]
95                 [TypeConverter (typeof (MessageVersionConverter))]
96                 public MessageVersion MessageVersion {
97                         get { return (MessageVersion) base ["messageVersion"]; }
98                         set { base ["messageVersion"] = value; }
99                 }
100
101                 protected override ConfigurationPropertyCollection Properties {
102                         get { return base.Properties; }
103                 }
104
105                 [ConfigurationProperty ("readerQuotas",
106                          Options = ConfigurationPropertyOptions.None)]
107                 public XmlDictionaryReaderQuotasElement ReaderQuotas {
108                         get { return (XmlDictionaryReaderQuotasElement) base ["readerQuotas"]; }
109                 }
110
111                 [ConfigurationProperty ("writeEncoding",
112                          Options = ConfigurationPropertyOptions.None,
113                          DefaultValue = "utf-8")]
114                 [TypeConverter (typeof (EncodingConverter))]
115                 public Encoding WriteEncoding {
116                         get { return (Encoding) base ["writeEncoding"]; }
117                         set { base ["writeEncoding"] = value; }
118                 }
119
120
121                 protected internal override BindingElement CreateBindingElement ()
122                 {
123                         return new TextMessageEncodingBindingElement ();
124                 }
125
126
127                 public override void ApplyConfiguration (BindingElement element)
128                 {
129                         var b = (TextMessageEncodingBindingElement) element;
130                         b.MaxReadPoolSize = MaxReadPoolSize;
131                         b.MaxWritePoolSize = MaxWritePoolSize;
132                         b.MessageVersion = MessageVersion;
133                         b.WriteEncoding = WriteEncoding;
134
135                         ReaderQuotas.ApplyConfiguration (b.ReaderQuotas);
136                 }
137
138                 public override void CopyFrom (ServiceModelExtensionElement element)
139                 {
140                         var b = (TextMessageEncodingElement) element;
141                         MaxReadPoolSize = b.MaxReadPoolSize;
142                         MaxWritePoolSize = b.MaxWritePoolSize;
143                         MessageVersion = b.MessageVersion;
144                         WriteEncoding = b.WriteEncoding;
145
146                         ReaderQuotas.CopyFrom (b.ReaderQuotas);
147                 }
148
149                 protected internal override void InitializeFrom (BindingElement element)
150                 {
151                         var b = (TextMessageEncodingBindingElement) element;
152                         MaxReadPoolSize = b.MaxReadPoolSize;
153                         MaxWritePoolSize = b.MaxWritePoolSize;
154                         MessageVersion = b.MessageVersion;
155                         WriteEncoding = b.WriteEncoding;
156
157                         ReaderQuotas.InitializeFrom (b.ReaderQuotas);
158                 }
159         }
160
161 }