Linker.Steps\MarkStep.cs (7)
1996MarkMethodsIf(type.Methods, IsSpecialSerializationConstructor, new DependencyInfo(DependencyKind.SerializationMethodForType, type), origin);
1999MarkMethodsIf(type.Methods, HasOnSerializeOrDeserializeAttribute, new DependencyInfo(DependencyKind.SerializationMethodForType, type), origin);
2113MarkMethodsIf(property.OtherMethods, m => true, reason, origin);
2125MarkMethodsIf(@event.OtherMethods, m => true, reason, origin);
2381if (MarkMethodsIf(type.Methods, MethodDefinitionExtensions.IsPublicInstancePropertyMethod, new DependencyInfo(DependencyKind.ReferencedBySpecialAttribute, type), origin))
2839MarkMethodsIf(tdef.Methods, m => !m.IsStatic, reason, origin);
2915MarkMethodsIf(type.Methods, m => m.Name == ".ctor" || m.Name == "Invoke", new DependencyInfo(DependencyKind.MethodForSpecialType, type), origin);