Ref parameter was not covered by ParameterInfo.IsOut. Fixed bug #696784.
[mono.git] / mcs / class / System.ServiceModel / System.ServiceModel.Configuration / ServiceMetadataEndpointElement.cs
1 //
2 // Author:
3 //      Atsushi Enomoto <atsushi@ximian.com>
4 //
5 // Copyright (C) 2010 Novell, Inc.  http://www.novell.com
6 //
7 // Permission is hereby granted, free of charge, to any person obtaining
8 // a copy of this software and associated documentation files (the
9 // "Software"), to deal in the Software without restriction, including
10 // without limitation the rights to use, copy, modify, merge, publish,
11 // distribute, sublicense, and/or sell copies of the Software, and to
12 // permit persons to whom the Software is furnished to do so, subject to
13 // the following conditions:
14 // 
15 // The above copyright notice and this permission notice shall be
16 // included in all copies or substantial portions of the Software.
17 // 
18 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 //
26 #if NET_4_0
27
28 using System;
29 using System.Collections;
30 using System.Collections.Generic;
31 using System.Collections.ObjectModel;
32 using System.ComponentModel;
33 using System.Configuration;
34 using System.Net;
35 using System.Net.Security;
36 using System.Reflection;
37 using System.Security.Cryptography.X509Certificates;
38 using System.Security.Principal;
39 using System.IdentityModel.Claims;
40 using System.IdentityModel.Policy;
41 using System.IdentityModel.Tokens;
42 using System.ServiceModel;
43 using System.ServiceModel.Channels;
44 using System.ServiceModel.Description;
45 using System.ServiceModel.Diagnostics;
46 using System.ServiceModel.Dispatcher;
47 using System.ServiceModel.MsmqIntegration;
48 using System.ServiceModel.PeerResolvers;
49 using System.ServiceModel.Security;
50 using System.Runtime.Serialization;
51 using System.Text;
52 using System.Xml;
53
54 namespace System.ServiceModel.Configuration
55 {
56         public class ServiceMetadataEndpointElement : StandardEndpointElement
57         {
58                 static ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection ();
59
60                 static ServiceMetadataEndpointElement ()
61                 {
62                         foreach (var item in new ConfigurationProperty [] {})
63                                 properties.Add (item);
64                 }
65
66                 protected internal override Type EndpointType {
67                         get { return typeof (ServiceMetadataEndpoint); }
68                 }
69
70                 protected override ConfigurationPropertyCollection Properties {
71                         get { return properties; }
72                 }
73
74                 protected internal override ServiceEndpoint CreateServiceEndpoint (ContractDescription contractDescription)
75                 {
76                         return new ServiceMetadataEndpoint ();
77                 }
78
79                 protected override void OnApplyConfiguration (ServiceEndpoint endpoint, ChannelEndpointElement serviceEndpointElement)
80                 {
81                         throw new NotImplementedException ();
82                 }
83
84                 protected override void OnApplyConfiguration (ServiceEndpoint endpoint, ServiceEndpointElement serviceEndpointElement)
85                 {
86                         throw new NotImplementedException ();
87                 }
88
89                 protected override void OnInitializeAndValidate (ChannelEndpointElement channelEndpointElement)
90                 {
91                         throw new NotImplementedException ();
92                 }
93
94                 protected override void OnInitializeAndValidate (ServiceEndpointElement serviceEndpointElement)
95                 {
96                         throw new NotImplementedException ();
97                 }
98         }
99 }
100
101 #endif