(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.EnterpriseServices / System.EnterpriseServices / ServiceConfig.cs
blobf23fc01d67d3930ef0ba08c98770a37897786b6d
1 // System.EnterpriseServices.ServiceConfig.cs
2 //
3 // Author: Mike Kestner (mkestner@ximian.com)
4 //
5 // Copyright (C) 2004 Novell, Inc.
6 //
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.
29 using System;
30 using System.Runtime.InteropServices;
32 namespace System.EnterpriseServices {
34 #if NET_1_1
35 [MonoTODO]
36 [ComVisible(false)]
37 public sealed class ServiceConfig {
39 #region Constructors
41 [MonoTODO]
42 public ServiceConfig ()
44 throw new NotImplementedException ();
47 #endregion
49 #region Properties
51 [MonoTODO]
52 public BindingOption Binding {
53 get {
54 throw new NotImplementedException ();
56 set {
57 throw new NotImplementedException ();
61 [MonoTODO]
62 public ITransaction BringYourOwnTransaction {
63 get {
64 throw new NotImplementedException ();
66 set {
67 throw new NotImplementedException ();
71 [MonoTODO]
72 public bool COMTIIntrinsicsEnabled {
73 get {
74 throw new NotImplementedException ();
76 set {
77 throw new NotImplementedException ();
81 [MonoTODO]
82 public bool IISIntrinsicsEnabled {
83 get {
84 throw new NotImplementedException ();
86 set {
87 throw new NotImplementedException ();
91 [MonoTODO]
92 public InheritanceOption Inheritance {
93 get {
94 throw new NotImplementedException ();
96 set {
97 throw new NotImplementedException ();
101 [MonoTODO]
102 public TransactionIsolationLevel IsolationLevel {
103 get {
104 throw new NotImplementedException ();
106 set {
107 throw new NotImplementedException ();
111 [MonoTODO]
112 public Guid PartitionId {
113 get {
114 throw new NotImplementedException ();
116 set {
117 throw new NotImplementedException ();
121 [MonoTODO]
122 public PartitionOption PartitionOption {
123 get {
124 throw new NotImplementedException ();
126 set {
127 throw new NotImplementedException ();
131 [MonoTODO]
132 public string SxsDirectory {
133 get {
134 throw new NotImplementedException ();
136 set {
137 throw new NotImplementedException ();
141 [MonoTODO]
142 public string SxsName {
143 get {
144 throw new NotImplementedException ();
146 set {
147 throw new NotImplementedException ();
151 [MonoTODO]
152 public SxsOption SxsOption {
153 get {
154 throw new NotImplementedException ();
156 set {
157 throw new NotImplementedException ();
161 [MonoTODO]
162 public SynchronizationOption Synchronization {
163 get {
164 throw new NotImplementedException ();
166 set {
167 throw new NotImplementedException ();
171 [MonoTODO]
172 public ThreadPoolOption ThreadPool {
173 get {
174 throw new NotImplementedException ();
176 set {
177 throw new NotImplementedException ();
181 [MonoTODO]
182 public string TipUrl {
183 get {
184 throw new NotImplementedException ();
186 set {
187 throw new NotImplementedException ();
191 [MonoTODO]
192 public string TrackingAppName {
193 get {
194 throw new NotImplementedException ();
196 set {
197 throw new NotImplementedException ();
201 [MonoTODO]
202 public string TrackingComponentName {
203 get {
204 throw new NotImplementedException ();
206 set {
207 throw new NotImplementedException ();
211 [MonoTODO]
212 public bool TrackingEnabled {
213 get {
214 throw new NotImplementedException ();
216 set {
217 throw new NotImplementedException ();
221 [MonoTODO]
222 public TransactionOption Transaction {
223 get {
224 throw new NotImplementedException ();
226 set {
227 throw new NotImplementedException ();
231 [MonoTODO]
232 public string TransactionDescription {
233 get {
234 throw new NotImplementedException ();
236 set {
237 throw new NotImplementedException ();
241 [MonoTODO]
242 public int TransactionTimeout {
243 get {
244 throw new NotImplementedException ();
246 set {
247 throw new NotImplementedException ();
251 #endregion
253 #endif