21 lines
741 B
Plaintext
21 lines
741 B
Plaintext
// ==++==
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//
|
|
// ==--==
|
|
//------------------------------------------------------------------------------
|
|
|
|
using System;
|
|
|
|
namespace System.Runtime.CompilerServices
|
|
{
|
|
//| <include file='doc\AccessedThroughPropertyAttribute.uex' path='docs/doc[@for="AccessedThroughPropertyAttribute"]/*' />
|
|
[AttributeUsage(AttributeTargets.Field)]
|
|
public sealed class AccessedThroughPropertyAttribute : Attribute
|
|
{
|
|
//| <include file='doc\AccessedThroughPropertyAttribute.uex' path='docs/doc[@for="AccessedThroughPropertyAttribute.AccessedThroughPropertyAttribute"]/*' />
|
|
public AccessedThroughPropertyAttribute(string propertyName);
|
|
}
|
|
}
|
|
|