(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.EnterpriseServices / System.EnterpriseServices / ObjectPoolingAttribute.cs
blobe7287fba963dad68680626147beda243ffc79a28
1 //
2 // System.EnterpriseServices.ObjectPoolingAttribute.cs
3 //
4 // Author:
5 // Tim Coleman (tim@timcoleman.com)
6 //
7 // Copyright (C) Tim Coleman, 2002
8 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 //
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 //
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 using System;
32 using System.Collections;
33 using System.Runtime.InteropServices;
35 namespace System.EnterpriseServices {
36 [AttributeUsage (AttributeTargets.Class)]
37 [ComVisible(false)]
38 public sealed class ObjectPoolingAttribute : Attribute {
40 #region Fields
42 int creationTimeout;
43 bool enabled;
44 int minPoolSize;
45 int maxPoolSize;
47 #endregion // Fields
49 #region Constructors
51 public ObjectPoolingAttribute ()
52 : this (true)
56 public ObjectPoolingAttribute (bool enable)
58 this.enabled = enable;
61 public ObjectPoolingAttribute (int minPoolSize, int maxPoolSize)
62 : this (true, minPoolSize, maxPoolSize)
66 public ObjectPoolingAttribute (bool enable, int minPoolSize, int maxPoolSize)
68 this.enabled = enable;
69 this.minPoolSize = minPoolSize;
70 this.maxPoolSize = maxPoolSize;
73 #endregion // Constructors
75 #region Properties
77 public int CreationTimeout {
78 get { return creationTimeout; }
79 set { creationTimeout = value; }
82 public bool Enabled {
83 get { return enabled; }
84 set { enabled = value; }
87 public int MaxPoolSize {
88 get { return maxPoolSize; }
89 set { maxPoolSize = value; }
92 public int MinPoolSize {
93 get { return minPoolSize; }
94 set { minPoolSize = value; }
97 #endregion // Properties
99 #region Methods
101 [MonoTODO]
102 public bool AfterSaveChanges (Hashtable info)
104 throw new NotImplementedException ();
107 [MonoTODO]
108 public bool Apply (Hashtable info)
110 throw new NotImplementedException ();
113 [MonoTODO]
114 public bool IsValidTarget (string s)
116 throw new NotImplementedException ();
119 #endregion // Methods