using System; namespace System.Runtime.CompilerServices { /// Specifies whether to wrap exceptions that do not derive from the class with a object. This class cannot be inherited. // Token: 0x02000053 RID: 83 [AttributeUsage(AttributeTargets.Assembly, Inherited = false, AllowMultiple = false)] [Serializable] public sealed class RuntimeCompatibilityAttribute : Attribute { /// Gets or sets a value that indicates whether to wrap exceptions that do not derive from the class with a object. /// true if exceptions that do not derive from the class should appear wrapped with a object; otherwise, false. // Token: 0x170000BF RID: 191 // (get) Token: 0x06000681 RID: 1665 RVA: 0x00014C64 File Offset: 0x00012E64 // (set) Token: 0x06000682 RID: 1666 RVA: 0x00014C6C File Offset: 0x00012E6C public bool WrapNonExceptionThrows { get { return this.wrap_non_exception_throws; } set { this.wrap_non_exception_throws = value; } } // Token: 0x040000A7 RID: 167 private bool wrap_non_exception_throws; } }