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

XmlTypeMapping.cs « System.Xml.Serialization « System.XML « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 66e56f811bdc841520507f6fcfb844df68b7484c (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
//
// XmlTypeMapping.cs: 
//
// Author:
//   John Donagher (john@webmeta.com)
//
// (C) 2002 John Donagher
//

using System.Xml;
using System;

namespace System.Xml.Serialization
{
	/// <summary>
	/// Summary description for XmlTypeMapping.
	/// </summary>
	public class XmlTypeMapping : XmlMapping
	{
		private string elementName;
		private string ns;
		private string typeFullName;
		private string typeName;

		public string ElementName  
		{
			get { return elementName; }
		}
		public string Namespace  
		{
			get { return ns; }
		}
		public string TypeFullName  
		{
			get { return typeFullName; }
		}
		public string TypeName  
		{
			get { return typeName; }
		}
	}
}