You've already forked linux-packaging-mono
Imported Upstream version 4.0.0~alpha1
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
This commit is contained in:
77
external/referencesource/mscorlib/system/reflection/obfuscationattribute.cs
vendored
Normal file
77
external/referencesource/mscorlib/system/reflection/obfuscationattribute.cs
vendored
Normal file
@ -0,0 +1,77 @@
|
||||
// ==++==
|
||||
//
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
//
|
||||
// ==--==
|
||||
// <OWNER>[....]</OWNER>
|
||||
//
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
namespace System.Reflection
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Method | AttributeTargets.Parameter | AttributeTargets.Field | AttributeTargets.Property | AttributeTargets.Event | AttributeTargets.Interface | AttributeTargets.Enum | AttributeTargets.Delegate,
|
||||
AllowMultiple = true, Inherited = false)]
|
||||
[System.Runtime.InteropServices.ComVisible(true)]
|
||||
public sealed class ObfuscationAttribute: Attribute
|
||||
{
|
||||
private bool m_strip = true;
|
||||
private bool m_exclude = true;
|
||||
private bool m_applyToMembers = true;
|
||||
private string m_feature = "all";
|
||||
|
||||
public ObfuscationAttribute()
|
||||
{
|
||||
}
|
||||
|
||||
public bool StripAfterObfuscation
|
||||
{
|
||||
get
|
||||
{
|
||||
return m_strip;
|
||||
}
|
||||
set
|
||||
{
|
||||
m_strip = value;
|
||||
}
|
||||
}
|
||||
|
||||
public bool Exclude
|
||||
{
|
||||
get
|
||||
{
|
||||
return m_exclude;
|
||||
}
|
||||
set
|
||||
{
|
||||
m_exclude = value;
|
||||
}
|
||||
}
|
||||
|
||||
public bool ApplyToMembers
|
||||
{
|
||||
get
|
||||
{
|
||||
return m_applyToMembers;
|
||||
}
|
||||
set
|
||||
{
|
||||
m_applyToMembers = value;
|
||||
}
|
||||
}
|
||||
|
||||
public string Feature
|
||||
{
|
||||
get
|
||||
{
|
||||
return m_feature;
|
||||
}
|
||||
set
|
||||
{
|
||||
m_feature = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user