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

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

namespace System.Security {

	[AttributeUsage (AttributeTargets.Class | AttributeTargets.Method |
			 AttributeTargets.Interface)]
	public sealed class SuppressUnmanagedCodeSecurityAttribute : Attribute {}
}