Mono.Tuner.InjectSecurityAttributes.RemoveSecurityAttributes C# (CSharp) Method

RemoveSecurityAttributes() protected method

protected RemoveSecurityAttributes ( ) : void
return void
		protected void RemoveSecurityAttributes ()
		{
			foreach (TypeDefinition type in _assembly.MainModule.Types) {
				RemoveSecurityAttributes (type);

				if (type.HasMethods)
					foreach (MethodDefinition method in type.Methods)
						RemoveSecurityAttributes (method);
			}
		}

Same methods

InjectSecurityAttributes::RemoveSecurityAttributes ( ICustomAttributeProvider provider ) : void