2009-07-31 Atsushi Enomoto <atsushi@ximian.com>
[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                         throw new NotImplementedException ();
86                 }
87
88                 [MonoTODO]
89                 public override IChannelFactory<TChannel>
90                         BuildChannelFactory<TChannel> (
91                         BindingContext context)
92                 {
93                         throw new NotImplementedException ();
94                 }
95
96                 [MonoTODO]
97                 public override IChannelListener<TChannel>
98                         BuildChannelListener<TChannel> (
99                         BindingContext context)
100                 {
101                         throw new NotImplementedException ();
102                 }
103
104                 [MonoTODO]
105                 public override bool CanBuildChannelFactory<TChannel> (
106                         BindingContext context)
107                 {
108                         throw new NotImplementedException ();
109                 }
110
111                 [MonoTODO]
112                 public override bool CanBuildChannelListener<TChannel> (
113                         BindingContext context)
114                 {
115                         throw new NotImplementedException ();
116                 }
117
118                 public override BindingElement Clone ()
119                 {
120                         return new SslStreamSecurityBindingElement (this);
121                 }
122
123                 [MonoTODO]
124                 public override T GetProperty<T> (BindingContext context)
125                 {
126                         throw new NotImplementedException ();
127                 }
128
129                 #region explicit interface implementations
130                 [MonoTODO]
131                 void IPolicyExportExtension.ExportPolicy (
132                         MetadataExporter exporter,
133                         PolicyConversionContext policyContext)
134                 {
135                         throw new NotImplementedException ();
136                 }
137                 #endregion
138         }
139 }