singrdk/base/Interfaces/Baseattrs/SecurityAttributes.csi

17 lines
507 B
Plaintext
Raw Permalink Normal View History

2008-03-05 09:52:00 -05:00
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
namespace System.Security
{
// UnverifiableCodeAttribute:
// Indicates that the target module contains unverifiable code.
//| <include file='doc\Attributes.uex' path='docs/doc[@for="UnverifiableCodeAttribute"]/*' />
[AttributeUsage(AttributeTargets.Module, AllowMultiple = true, Inherited = false )]
sealed public class UnverifiableCodeAttribute : System.Attribute
{
}
}