|
|
|
@ -1,7 +1,4 @@
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
using Volo.Abp.Http.Modeling;
|
|
|
|
|
|
|
|
|
|
namespace Volo.Abp.Http.Client.DynamicProxying
|
|
|
|
@ -11,9 +8,9 @@ namespace Volo.Abp.Http.Client.DynamicProxying
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Compares the given parameters.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="actionParameter">The parameter description retreived from the server (depends on the server's runtime)</param>
|
|
|
|
|
/// <param name="actionParameter">The parameter description retrieved from the server (depends on the server's runtime)</param>
|
|
|
|
|
/// <param name="methodParameter">The local parameter info (depends on the client's runtime)</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public bool TypeMatches(MethodParameterApiDescriptionModel actionParameter, ParameterInfo methodParameter);
|
|
|
|
|
bool TypeMatches(MethodParameterApiDescriptionModel actionParameter, ParameterInfo methodParameter);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|