1 //
2 // System.Web.UI.WebControls.EmbeddedMailObjectsCollection.cs
3 //
4 // Authors:
5 //	Igor Zelmanovich (igorz@mainsoft.com)
6 //
7 // (C) 2006 Mainsoft, Inc (http://www.mainsoft.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 
29 using System;
30 using System.Collections.Generic;
31 using System.ComponentModel;
32 using System.Text;
33 using System.Collections;
34 
35 namespace System.Web.UI.WebControls
36 {
37 	[Editor ("System.Web.UI.Design.EmbeddedMailObjectCollectionEditor, " + Consts.AssemblySystem_Design, "System.Drawing.Design.UITypeEditor, " + Consts.AssemblySystem_Drawing)]
38 	public sealed class EmbeddedMailObjectsCollection : CollectionBase
39 	{
40 		[MonoTODO("Not implemented")]
41 		public EmbeddedMailObject this [int index] {
42 			get { throw new NotImplementedException (); }
43 			set { throw new NotImplementedException (); }
44 		}
45 
46 		[MonoTODO("Not implemented")]
Add(EmbeddedMailObject value)47 		public int Add (EmbeddedMailObject value) {
48 			throw new NotImplementedException ();
49 		}
50 
51 		[MonoTODO("Not implemented")]
Contains(EmbeddedMailObject value)52 		public bool Contains (EmbeddedMailObject value) {
53 			throw new NotImplementedException ();
54 		}
55 
56 		[MonoTODO("Not implemented")]
CopyTo(EmbeddedMailObject [] array, int index)57 		public void CopyTo (EmbeddedMailObject [] array, int index) {
58 			throw new NotImplementedException ();
59 		}
60 
61 		[MonoTODO("Not implemented")]
IndexOf(EmbeddedMailObject value)62 		public int IndexOf (EmbeddedMailObject value) {
63 			throw new NotImplementedException ();
64 		}
65 
66 		[MonoTODO("Not implemented")]
Insert(int index, EmbeddedMailObject value)67 		public void Insert (int index, EmbeddedMailObject value) {
68 			throw new NotImplementedException ();
69 		}
70 
71 		[MonoTODO("Not implemented")]
OnValidate(object value)72 		protected override void OnValidate (object value) {
73 			throw new NotImplementedException ();
74 		}
75 
76 		[MonoTODO("Not implemented")]
Remove(EmbeddedMailObject value)77 		public void Remove (EmbeddedMailObject value) {
78 			throw new NotImplementedException ();
79 		}
80 	}
81 }
82 
83