This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see
Cake.Xamarin.Binding.Util.
Summary
Finds likely obfuscated types and members based on the java type or member name.
The default regex pattern looks for types or members with only 3 character long names.
Syntax
public static FindObfuscationResults FindObfuscations(this ICakeContext context, FilePath assembly, bool ignoreDefaultExceptions = false, bool ignoreMembers = false, bool ignoreTypes = false, string[] regexPatterns = null)
Attributes
Type |
Description |
CakeMethodAliasAttribute |
|
Parameters
Name |
Type |
Description |
context |
ICakeContext |
The context. |
assembly |
FilePath |
The assembly file to search in. |
ignoreDefaultExceptions |
bool |
If set to true ignore default exceptions (such as to, for, at, etc). |
ignoreMembers |
bool |
If set to true ignore members. |
ignoreTypes |
bool |
If set to true ignore types. |
regexPatterns |
string[] |
Custom regex patterns to use instead of the default. These are based on a single line regex. |
Return Value