// Token: 0x06000D6E RID: 3438 RVA: 0x0005BF40 File Offset: 0x0005A140
 private static bool IsForbiddenMethod(string nspace, string type, string method)
 {
     return(AssemblyScanner.IsForbiddenType(nspace, type) || AssemblyScanner.BlacklistMethods.Contains(string.Concat(new string[]
     {
         nspace,
         ".",
         type,
         ".",
         method
     })));
 }
 // Token: 0x06000D6B RID: 3435 RVA: 0x0005BEAC File Offset: 0x0005A0AC
 private static bool IsForbidden(TypeReference type)
 {
     return(AssemblyScanner.IsForbiddenType(type.Namespace, type.Name));
 }