[eglib] Prefer <langinfo.h> to <localcharset.h>
[mono.git] / mcs / class / System.ServiceModel / System.ServiceModel.Dispatcher / DispatchRuntime.cs
1 //
2 // DispatchRuntime.cs
3 //
4 // Author:
5 //      Atsushi Enomoto <atsushi@ximian.com>
6 //
7 // Copyright (C) 2005-2010 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.Reflection;
32 #if !NET_2_1
33 using System.IdentityModel.Policy;
34 using System.Web.Security;
35 #endif
36 using System.Text;
37 using System.Threading;
38 using System.ServiceModel;
39 using System.ServiceModel.Channels;
40 using System.ServiceModel.Description;
41
42 namespace System.ServiceModel.Dispatcher
43 {
44         public sealed class DispatchRuntime
45         {
46 #if NET_2_1
47                 internal DispatchRuntime (EndpointDispatcher dispatcher, ClientRuntime callbackClientRuntime)
48                 {
49                         UnhandledDispatchOperation = new DispatchOperation (
50                                 this, "*", "*", "*");
51                 }
52 #else
53                 DispatchOperation.DispatchOperationCollection operations =
54                         new DispatchOperation.DispatchOperationCollection ();
55
56
57                 internal DispatchRuntime (EndpointDispatcher dispatcher, ClientRuntime callbackClientRuntime)
58                 {
59                         EndpointDispatcher = dispatcher;
60                         CallbackClientRuntime = callbackClientRuntime ?? new ClientRuntime (EndpointDispatcher.ContractName, EndpointDispatcher.ContractNamespace, this);
61                         UnhandledDispatchOperation = new DispatchOperation (
62                                 this, "*", "*", "*");
63
64                         AutomaticInputSessionShutdown = true;
65                         PrincipalPermissionMode = PrincipalPermissionMode.UseWindowsGroups; // silly default value for us.
66                         SuppressAuditFailure = true;
67                         ValidateMustUnderstand = true;
68
69                         InputSessionShutdownHandlers = new SynchronizedCollection<IInputSessionShutdown> ();
70                         InstanceContextInitializers = new SynchronizedCollection<IInstanceContextInitializer> ();
71                         MessageInspectors = new SynchronizedCollection<IDispatchMessageInspector> ();
72                 }
73
74                 [MonoTODO]
75                 public AuditLogLocation SecurityAuditLogLocation { get; set; }
76
77                 [MonoTODO]
78                 public bool AutomaticInputSessionShutdown { get; set; }
79
80                 public ChannelDispatcher ChannelDispatcher {
81                         get { return EndpointDispatcher.ChannelDispatcher; }
82                 }
83
84                 [MonoTODO]
85                 public ConcurrencyMode ConcurrencyMode { get; set; }
86
87                 public EndpointDispatcher EndpointDispatcher { get; private set; }
88
89                 public ClientRuntime CallbackClientRuntime { get; internal set; }
90
91                 [MonoTODO]
92                 public ReadOnlyCollection<IAuthorizationPolicy> ExternalAuthorizationPolicies { get; set; }
93
94                 [MonoTODO]
95                 public bool IgnoreTransactionMessageProperty { get; set; }
96
97                 [MonoTODO]
98                 public bool ImpersonateCallerForAllOperations { get; set; }
99
100                 [MonoTODO]
101                 public SynchronizedCollection<IInputSessionShutdown> InputSessionShutdownHandlers { get; private set; }
102
103                 [MonoTODO]
104                 public SynchronizedCollection<IInstanceContextInitializer> InstanceContextInitializers { get; private set; }
105
106                 public IInstanceProvider InstanceProvider { get; set; }
107
108                 public IInstanceContextProvider InstanceContextProvider { get; set; }
109
110                 [MonoTODO]
111                 public AuditLevel MessageAuthenticationAuditLevel { get; set; }
112
113                 public SynchronizedCollection<IDispatchMessageInspector> MessageInspectors { get; private set; }
114
115                 public SynchronizedKeyedCollection<string,DispatchOperation> Operations {
116                         get { return operations; }
117                 }
118
119                 public IDispatchOperationSelector OperationSelector { get; set; }
120
121                 [MonoTODO]
122                 public PrincipalPermissionMode PrincipalPermissionMode { get; set; }
123
124                 [MonoTODO]
125                 public bool ReleaseServiceInstanceOnTransactionComplete { get; set; }
126
127                 [MonoTODO]
128                 public RoleProvider RoleProvider { get; set; }
129
130                 [MonoTODO]
131                 public AuditLevel ServiceAuthorizationAuditLevel { get; set; }
132
133                 [MonoTODO]
134                 public ServiceAuthorizationManager ServiceAuthorizationManager { get; set; }
135
136                 public InstanceContext SingletonInstanceContext { get; set; }
137
138                 [MonoTODO]
139                 public bool SuppressAuditFailure { get; set; }
140
141                 [MonoTODO]
142                 public SynchronizationContext SynchronizationContext { get; set; }
143
144                 [MonoTODO]
145                 public bool TransactionAutoCompleteOnSessionClose { get; set; }
146
147                 public Type Type { get; set; }
148
149                 public bool ValidateMustUnderstand { get; set; }
150 #endif
151
152                 public DispatchOperation UnhandledDispatchOperation { get; set; }
153         }
154 }