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

UnverifiableCodeAttribute.cs « System.Security « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6cfb5bda3729305886ddae340549478ae4d5e195 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//
// System.Security.UnverifiableCodeAttribute.cs
//
// Author:
//   Nick Drochak(ndrochak@gol.com)
//
// (C) Nick Drochak
//

namespace System.Security {

	[AttributeUsage (AttributeTargets.Module)]
	public sealed class UnverifiableCodeAttribute : Attribute {}
}