Merge pull request #2964 from ludovic-henry/sgen-monocontext
[mono.git] / mcs / class / referencesource / System.Web / Util / DoNotResetAttribute.cs
1 //------------------------------------------------------------------------------
2 // <copyright file="DoNotResetAttribute.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>                                                                
5 //------------------------------------------------------------------------------
6
7 namespace System.Web.Util {
8     using System;
9
10     // If this attribute is applied to a field, it will not be reset by a call to ReflectionUtil.Reset().
11     
12     [AttributeUsage(AttributeTargets.Field, AllowMultiple = false)]
13     internal sealed class DoNotResetAttribute : Attribute {
14     }
15
16 }