Linker.Steps\MarkStep.cs (7)
2002MarkMethodsIf(type.Methods, IsSpecialSerializationConstructor, new DependencyInfo(DependencyKind.SerializationMethodForType, type), origin);
2005MarkMethodsIf(type.Methods, HasOnSerializeOrDeserializeAttribute, new DependencyInfo(DependencyKind.SerializationMethodForType, type), origin);
2119MarkMethodsIf(property.OtherMethods, m => true, reason, origin);
2131MarkMethodsIf(@event.OtherMethods, m => true, reason, origin);
2387if (MarkMethodsIf(type.Methods, MethodDefinitionExtensions.IsPublicInstancePropertyMethod, new DependencyInfo(DependencyKind.ReferencedBySpecialAttribute, type), origin))
2845MarkMethodsIf(tdef.Methods, m => !m.IsStatic, reason, origin);
2921MarkMethodsIf(type.Methods, m => m.Name == ".ctor" || m.Name == "Invoke", new DependencyInfo(DependencyKind.MethodForSpecialType, type), origin);