obfuz/Editor/ProxyCall/IProxyCallPolicy.cs

17 lines
358 B
C#
Raw Normal View History

2025-04-24 11:58:22 +08:00
using dnlib.DotNet;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Obfuz.DynamicProxy
{
2025-04-29 10:04:44 +08:00
public interface IProxyCallPolicy
2025-04-24 11:58:22 +08:00
{
bool NeedDynamicProxyCallInMethod(MethodDef method);
bool NeedDynamicProxyCalledMethod(IMethod method, bool callVir);
}
}