[System] EndRead now throws WebException on abort.
[mono.git] / mcs / class / System.ServiceModel / System.ServiceModel.Channels / SslStreamSecurityBindingElement.cs
1 //
2 // SslStreamSecurityBindingElement.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 using System.Collections.Generic;
29 using System.Collections.ObjectModel;
30 using System.IO;
31 using System.Net.Security;
32 using System.ServiceModel.Channels;
33 using System.ServiceModel.Description;
34 using System.ServiceModel.Security;
35 using System.ServiceModel.Security.Tokens;
36 using System.Xml;
37
38 namespace System.ServiceModel.Channels
39 {
40         [MonoTODO]
41         public class SslStreamSecurityBindingElement
42                 : BindingElement, ITransportTokenAssertionProvider, IPolicyExportExtension
43         {
44                 public SslStreamSecurityBindingElement ()
45                 {
46                         verifier = IdentityVerifier.CreateDefault ();
47                 }
48
49                 IdentityVerifier verifier;
50                 bool require_client_certificate;
51
52                 public IdentityVerifier IdentityVerifier {
53                         get { return verifier; }
54                         set { verifier = value; }
55                 }
56
57                 public bool RequireClientCertificate {
58                         get { return require_client_certificate; }
59                         set { require_client_certificate = value; }
60                 }
61
62                 private SslStreamSecurityBindingElement (
63                         SslStreamSecurityBindingElement other)
64                         : base (other)
65                 {
66                         verifier = other.verifier;
67                         require_client_certificate = other.require_client_certificate;
68                 }
69
70                 [MonoTODO]
71                 public StreamUpgradeProvider BuildClientStreamUpgradeProvider (BindingContext context)
72                 {
73                         return new SslStreamSecurityUpgradeProvider (this);
74                 }
75
76                 [MonoTODO]
77                 public StreamUpgradeProvider BuildServerStreamUpgradeProvider (BindingContext context)
78                 {
79                         throw new NotImplementedException ();
80                 }
81
82                 [MonoTODO]
83                 public XmlElement GetTransportTokenAssertion ()
84                 {
85                         var doc = new XmlDocument ();
86                         var element = doc.CreateElement (
87                                 "msf", "SslTransportSecurity", PolicyImportHelper.FramingPolicyNS);
88                         return element;
89                 }
90
91                 [MonoTODO]
92                 public override IChannelFactory<TChannel>
93                         BuildChannelFactory<TChannel> (
94                         BindingContext context)
95                 {
96                         throw new NotImplementedException ();
97                 }
98
99                 [MonoTODO]
100                 public override IChannelListener<TChannel>
101                         BuildChannelListener<TChannel> (
102                         BindingContext context)
103                 {
104                         throw new NotImplementedException ();
105                 }
106
107                 [MonoTODO]
108                 public override bool CanBuildChannelFactory<TChannel> (
109                         BindingContext context)
110                 {
111                         throw new NotImplementedException ();
112                 }
113
114                 [MonoTODO]
115                 public override bool CanBuildChannelListener<TChannel> (
116                         BindingContext context)
117                 {
118                         throw new NotImplementedException ();
119                 }
120
121                 public override BindingElement Clone ()
122                 {
123                         return new SslStreamSecurityBindingElement (this);
124                 }
125
126                 [MonoTODO]
127                 public override T GetProperty<T> (BindingContext context)
128                 {
129                         throw new NotImplementedException ();
130                 }
131
132                 #region explicit interface implementations
133                 [MonoTODO]
134                 void IPolicyExportExtension.ExportPolicy (
135                         MetadataExporter exporter,
136                         PolicyConversionContext context)
137                 {
138                         var token = GetTransportTokenAssertion ();
139                         var transportBinding = TransportBindingElement.CreateTransportBinding (token);
140                         context.GetBindingAssertions ().Add (transportBinding);
141                 }
142                 #endregion
143         }
144 }