annotate Source/DataAccess/IdentityAttribute.cs @ 3:1ef98bd70424

!bug 100 +3h Исправление проблемы BLToolkit + mono 3.4
author cin
date Fri, 22 Aug 2014 17:34:46 +0400
parents f990fcb411a9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
1 using System;
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
2
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
3 namespace BLToolkit.DataAccess
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
4 {
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
5 [Serializable]
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
6 [AttributeUsage(
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
7 AttributeTargets.Field | AttributeTargets.Property |
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
8 AttributeTargets.Class | AttributeTargets.Interface,
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
9 AllowMultiple = true)]
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
10 public class IdentityAttribute : NonUpdatableAttribute
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
11 {
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
12 public IdentityAttribute() : base(true, true, true)
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
13 {
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
14 }
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
15 }
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
16 }