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

IDesignerSerializationService.cs « System.ComponentModel.Design.Serialization « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: de6b25c7264e0c4ccae0edcfb3d89e62b05e63e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// System.ComponentModel.Design.Serialization.IDesignerSerializationService.cs
//
// Author:
// 	Alejandro Sánchez Acosta   <raciel@gnome.org>
//
// (C) Alejandro Sánchez Acosta
//

using System.Collections;
using System.Web.UI.Design;

namespace System.ComponentModel.Design.Serialization
{
	public interface IDesignerSerializationService
	{
		ICollection Deserialize (object serializationData);

		object Serialize (ICollection objects);
	}
}