Ref parameter was not covered by ParameterInfo.IsOut. Fixed bug #696784.
[mono.git] / mcs / class / System.ServiceModel / System.ServiceModel.Configuration / IdentityElement.cs
1 //
2 // IdentityElement.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.Linq;
36 using System.Net;
37 using System.Net.Security;
38 using System.Reflection;
39 using System.Security.Cryptography.X509Certificates;
40 using System.Security.Principal;
41 using System.IdentityModel.Claims;
42 using System.IdentityModel.Policy;
43 using System.IdentityModel.Tokens;
44 using System.ServiceModel;
45 using System.ServiceModel.Channels;
46 using System.ServiceModel.Description;
47 using System.ServiceModel.Diagnostics;
48 using System.ServiceModel.Dispatcher;
49 using System.ServiceModel.MsmqIntegration;
50 using System.ServiceModel.PeerResolvers;
51 using System.ServiceModel.Security;
52 using System.Runtime.Serialization;
53 using System.Text;
54 using System.Xml;
55
56 namespace System.ServiceModel.Configuration
57 {
58         public sealed class IdentityElement
59                  : ConfigurationElement
60         {
61                 // Properties
62
63                 [ConfigurationProperty ("certificate",
64                          Options = ConfigurationPropertyOptions.None)]
65                 public CertificateElement Certificate {
66                         get { return (CertificateElement) base ["certificate"]; }
67                 }
68
69                 [ConfigurationProperty ("certificateReference",
70                          Options = ConfigurationPropertyOptions.None)]
71                 public CertificateReferenceElement CertificateReference {
72                         get { return (CertificateReferenceElement) base ["certificateReference"]; }
73                 }
74
75                 [ConfigurationProperty ("dns",
76                          Options = ConfigurationPropertyOptions.None)]
77                 public DnsElement Dns {
78                         get { return (DnsElement) base ["dns"]; }
79                 }
80
81                 protected override ConfigurationPropertyCollection Properties {
82                         get { return base.Properties; }
83                 }
84
85                 [ConfigurationProperty ("rsa",
86                          Options = ConfigurationPropertyOptions.None)]
87                 public RsaElement Rsa {
88                         get { return (RsaElement) base ["rsa"]; }
89                 }
90
91                 [ConfigurationProperty ("servicePrincipalName",
92                          Options = ConfigurationPropertyOptions.None)]
93                 public ServicePrincipalNameElement ServicePrincipalName {
94                         get { return (ServicePrincipalNameElement) base ["servicePrincipalName"]; }
95                 }
96
97                 [ConfigurationProperty ("userPrincipalName",
98                          Options = ConfigurationPropertyOptions.None)]
99                 public UserPrincipalNameElement UserPrincipalName {
100                         get { return (UserPrincipalNameElement) base ["userPrincipalName"]; }
101                 }
102
103                 // it was extraneous...
104                 internal EndpointIdentity Create ()
105                 {
106                         return ConfigUtil.CreateInstance (this);
107                 }
108
109                 public void InitializeFrom (EndpointIdentity identity)
110                 {
111                         if (identity == null)
112                                 throw new ArgumentNullException ("identity");
113
114                         if (identity is X509CertificateEndpointIdentity)
115                                 Certificate.EncodedValue = Convert.ToBase64String (((X509CertificateEndpointIdentity) identity).Certificates [0].RawData);
116                         else if (identity is DnsEndpointIdentity)
117                                 Dns.Value = (string) ((DnsEndpointIdentity) identity).IdentityClaim.Resource;
118                         else if (identity is RsaEndpointIdentity)
119                                 Rsa.Value = (string) ((RsaEndpointIdentity) identity).IdentityClaim.Resource;
120                         else if (identity is SpnEndpointIdentity)
121                                 ServicePrincipalName.Value = (string) ((SpnEndpointIdentity) identity).IdentityClaim.Resource;
122                         else if (identity is UpnEndpointIdentity)
123                                 UserPrincipalName.Value = (string) ((UpnEndpointIdentity) identity).IdentityClaim.Resource;
124                         else
125                                 throw new ArgumentException (String.Format ("Unexpected EndpointIdentity of type '{0}'", identity.GetType ()));
126                 }
127         }
128
129 }