Welcome to mirror list, hosted at ThFree Co, Russian Federation.

InputLanguageCollection.cs « System.Windows.Forms « System.Windows.Forms « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6af43ffb3096475b920a2ffa1ed212043daa3b0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
//
// System.Windows.Forms.InputLanguageCollection.cs
//
// Author:
//   stubbed out by Daniel Carrera (dcarrera@math.toronto.edu)
//   Dennis Hayes (dennish@Raytek.com)
//
// (C) 2002/3 Ximian, Inc
//
using System.Collections;
namespace System.Windows.Forms {

	// <summary>
	// </summary>

	public class InputLanguageCollection : ReadOnlyCollectionBase {

		private InputLanguageCollection(){//For signiture compatablity. Prevents the auto creation of public construct
		}

		//
		//  --- Public Properties
		//

		[MonoTODO]
		public InputLanguage this[int index] {
			get {
				throw new NotImplementedException ();
			}
		}

		//
		//  --- Public Methods
		//

		[MonoTODO]
		public bool Contains(InputLanguage value) {
			throw new NotImplementedException ();
		}

		[MonoTODO]
		public void CopyTo(InputLanguage[] array, int index) {
			//FIXME:
		}

		[MonoTODO]
		public int IndexOf(InputLanguage value) {
			throw new NotImplementedException ();
		}

	}
}