3 implementations of StateMachineTypeName
Microsoft.CodeAnalysis (3)
CodeGen\MethodBody.cs (1)
143string Cci.IMethodBody.StateMachineTypeName => _stateMachineTypeNameOpt;
Emit\NoPia\CommonEmbeddedMethod.cs (1)
153string Cci.IMethodBody.StateMachineTypeName => null;
PEWriter\RootModuleStaticConstructor.cs (1)
156public string StateMachineTypeName => null;
5 references to StateMachineTypeName
Microsoft.CodeAnalysis (5)
Emit\EditAndContinue\DeltaMetadataWriter.cs (1)
866body.StateMachineTypeName,
NativePdbWriter\PdbWriter.cs (1)
77bool isKickoffMethod = methodBody.StateMachineTypeName != null;
PEWriter\CustomDebugInfoWriter.cs (2)
104if (methodBody.StateMachineTypeName != null) 106encoder.AddStateMachineTypeName(methodBody.StateMachineTypeName);
PEWriter\MetadataWriter.PortablePdb.cs (1)
65bool isKickoffMethod = bodyOpt.StateMachineTypeName != null;