Linker.Steps\MarkStep.cs (7)
2008MarkMethodsIf(type.Methods, IsSpecialSerializationConstructor, new DependencyInfo(DependencyKind.SerializationMethodForType, type), origin);
2011MarkMethodsIf(type.Methods, HasOnSerializeOrDeserializeAttribute, new DependencyInfo(DependencyKind.SerializationMethodForType, type), origin);
2125MarkMethodsIf(property.OtherMethods, m => true, reason, origin, suppressTrimAnalysisWarnings: suppressTrimAnalysisWarnings);
2137MarkMethodsIf(@event.OtherMethods, m => true, reason, origin, suppressTrimAnalysisWarnings: suppressTrimAnalysisWarnings);
2393if (MarkMethodsIf(type.Methods, MethodDefinitionExtensions.IsPublicInstancePropertyMethod, new DependencyInfo(DependencyKind.ReferencedBySpecialAttribute, type), origin))
2851MarkMethodsIf(tdef.Methods, m => !m.IsStatic, reason, origin);
2927MarkMethodsIf(type.Methods, m => m.Name == ".ctor" || m.Name == "Invoke", new DependencyInfo(DependencyKind.MethodForSpecialType, type), origin);