ObfuscationAttribute.StripAfterObfuscation プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
隠ぺいツールが処理後に属性を削除する必要があるかどうかを示す Boolean 値を取得または設定します。
public:
property bool StripAfterObfuscation { bool get(); void set(bool value); };
public bool StripAfterObfuscation { get; set; }
member this.StripAfterObfuscation : bool with get, set
Public Property StripAfterObfuscation As Boolean
プロパティ値
隠ぺいツールが処理後に属性を削除する必要がある場合は true
。それ以外の場合は false
。 既定値は、true
です。
例
次のコード例は、ObfuscationAttribute難読化ツールがfalse
難読化後に属性を削除しないように、 プロパティを持つ StripAfterObfuscation を示しています。 プロパティの既定値は であるため、難読化からの除外MethodA
を回避するには、 プロパティtrue
に を指定false
ExcludeするExclude必要があります。
このコードは、コンパイルおよび実行できる大きな例の一部です。 詳細については、ObfuscationAttribute クラスのトピックを参照してください。
[ObfuscationAttribute(Exclude=true, ApplyToMembers=false)]
public class Type2
{
// The exclusion of the type is not applied to its members,
// however in order to mark the member with the "default"
// feature it is necessary to specify Exclude=false,
// because the default value of Exclude is true. The tool
// should not strip this attribute after obfuscation.
[ObfuscationAttribute(Exclude=false, Feature="default",
StripAfterObfuscation=false)]
public void MethodA() {}
// This member is marked for obfuscation, because the
// exclusion of the type is not applied to its members.
public void MethodB() {}
}
<ObfuscationAttribute(Exclude:=True, ApplyToMembers:=False)> _
Public Class Type2
' The exclusion of the type is not applied to its members,
' however in order to mark the member with the "default"
' feature it is necessary to specify Exclude:=False,
' because the default value of Exclude is True. The tool
' should not strip this attribute after obfuscation.
<ObfuscationAttribute(Exclude:=False, _
Feature:="default", StripAfterObfuscation:=False)> _
Public Sub MethodA()
End Sub
' This member is marked for obfuscation, because the
' exclusion of the type is not applied to its members.
Public Sub MethodB()
End Sub
End Class
注釈
ライブラリを別のアプリケーションの一部として含め、そのアプリケーションの一部として難読化する場合は、属性を削除しないでください。
重要
この属性を適用しても、適用先のコード エンティティが自動的に難読化されることはありません。 属性の適用は、難読化ツールの構成ファイルを作成する代わりに使用します。 つまり、難読化ツールの手順を提供するだけです。 難読化ツールのベンダーは、ここで説明するセマンティクスに従うことをお勧めします。 ただし、特定のツールが Microsoft の推奨事項に従っている保証はありません。
適用対象
.NET