2009-05-26 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.ServiceModel / Test / System.ServiceModel.Channels / CalcSampleProxy.cs
1 //
2 // CalcSampleProxy.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;
29 using System.Collections.Generic;
30 using System.Collections.ObjectModel;
31 using System.IO;
32 using System.Net;
33 using System.Net.Security;
34 using System.Security.Cryptography.X509Certificates;
35 using System.IdentityModel.Selectors;
36 using System.IdentityModel.Tokens;
37 using System.ServiceModel;
38 using System.ServiceModel.Channels;
39 using System.ServiceModel.Description;
40 using System.ServiceModel.Security;
41 using System.ServiceModel.Security.Tokens;
42 using System.Threading;
43 using System.Xml;
44 using NUnit.Framework;
45
46 namespace MonoTests.System.ServiceModel.Channels
47 {
48         [ServiceContract]
49         public interface ICalc
50         {
51                 [OperationContract]
52                 int Sum (int a, int b);
53
54                 [OperationContract (AsyncPattern = true)]
55                 IAsyncResult BeginSum (int a, int b, AsyncCallback cb, object state);
56
57                 int EndSum (IAsyncResult result);
58         }
59
60         public class CalcProxy : ClientBase<ICalc>, ICalc
61         {
62                 public CalcProxy (Binding binding, EndpointAddress address)
63                         : base (binding, address)
64                 {
65                 }
66
67                 public int Sum (int a, int b)
68                 {
69                         return Channel.Sum (a, b);
70                 }
71
72                 public IAsyncResult BeginSum (int a, int b, AsyncCallback cb, object state)
73                 {
74                         return Channel.BeginSum (a, b, cb, state);
75                 }
76
77                 public int EndSum (IAsyncResult result)
78                 {
79                         return Channel.EndSum (result);
80                 }
81         }
82
83         public class CalcService : ICalc
84         {
85                 public int Sum (int a, int b)
86                 {
87                         return a + b;
88                 }
89
90                 public IAsyncResult BeginSum (int a, int b, AsyncCallback cb, object state)
91                 {
92                         return new CalcAsyncResult (a, b, cb, state);
93                 }
94
95                 public int EndSum (IAsyncResult result)
96                 {
97                         CalcAsyncResult c = (CalcAsyncResult) result;
98                         return c.A + c.B;
99                 }
100         }
101
102         class CalcAsyncResult : IAsyncResult
103         {
104                 public int A, B;
105                 AsyncCallback callback;
106                 object state;
107
108                 public CalcAsyncResult (int a, int b, AsyncCallback cb, object state)
109                 {
110                         A = a;
111                         B = b;
112                         callback = cb;
113                         this.state = state;
114                 }
115
116                 public object AsyncState {
117                         get { return state; }
118                 }
119
120                 public WaitHandle AsyncWaitHandle {
121                         get { return null; }
122                 }
123
124                 public bool CompletedSynchronously {
125                         get { return true; }
126                 }
127
128                 public bool IsCompleted {
129                         get { return true; }
130                 }
131         }
132 }