14 references to MethodBodyAttributes
ILAssembler (3)
EntityRegistry.cs (1)
1912public MethodBodyAttributes BodyAttributes { get; set; }
GrammarVisitor.cs (2)
4073currentMethod.Definition.BodyAttributes = MethodBodyAttributes.InitLocals; 4084currentMethod.Definition.BodyAttributes = MethodBodyAttributes.InitLocals;
Microsoft.CodeAnalysis (1)
PEWriter\MetadataWriter.cs (1)
3073attributes: (methodBody.AreLocalsZeroed ? MethodBodyAttributes.InitLocals : 0),
System.Reflection.Emit (2)
System\Reflection\Emit\ModuleBuilderImpl.cs (2)
631attributes: method.InitLocals ? MethodBodyAttributes.InitLocals : MethodBodyAttributes.None,
System.Reflection.Metadata (8)
System\Reflection\Metadata\Ecma335\Encoding\MethodBodyStreamEncoder.cs (8)
48MethodBodyAttributes attributes) 71MethodBodyAttributes attributes = MethodBodyAttributes.InitLocals, 141MethodBodyAttributes attributes) 164MethodBodyAttributes attributes = MethodBodyAttributes.InitLocals, 224MethodBodyAttributes attributes, 233bool initLocals = (attributes & MethodBodyAttributes.InitLocals) != 0;