13 lines
230 B
C#
13 lines
230 B
C#
using System;
|
|
|
|
namespace Prise.Proxy
|
|
{
|
|
[Flags]
|
|
public enum MethodFindingStrategy
|
|
{
|
|
MethodNameMustMatch,
|
|
MethodReturnTypeMustMatch,
|
|
ParameterCountMustMatch,
|
|
ParameterTypeMustMatch
|
|
}
|
|
} |