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

PropertyAttributes.cs « System.Data « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6e43646100e51e602d332df6df404a70169643f7 (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
//
// System.Data.PropertyAttributes.cs
//
// Author:
//   Christopher Podurgiel (cpodurgiel@msn.com)
//
// (C) Chris Podurgiel
//

using System;

namespace System.Data
{
	/// <summary>
	/// Specifies the attributes of a property.
	/// This enumeration has a FlagsAttribute that allows a bitwise combination of its member values
	/// </summary>
	[Flags]
	[Serializable]
	public enum PropertyAttributes
	{
		NotSupported = 0,
		Required = 1,
		Optional = 2,
		Read = 512,
		Write = 1024
	}
}