-
-
Notifications
You must be signed in to change notification settings - Fork 163
Expand file tree
/
Copy pathActionDescriptorExtensions.cs
More file actions
39 lines (30 loc) · 1.31 KB
/
ActionDescriptorExtensions.cs
File metadata and controls
39 lines (30 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using System.Reflection;
using Microsoft.AspNetCore.Mvc.Abstractions;
using Microsoft.AspNetCore.Mvc.Controllers;
using Microsoft.AspNetCore.Mvc.ModelBinding;
namespace JsonApiDotNetCore.OpenApi.Swashbuckle;
internal static class ActionDescriptorExtensions
{
public static MethodInfo? TryGetActionMethod(this ActionDescriptor descriptor)
{
ArgumentNullException.ThrowIfNull(descriptor);
if (descriptor is ControllerActionDescriptor controllerActionDescriptor)
{
return controllerActionDescriptor.MethodInfo;
}
return descriptor.EndpointMetadata.OfType<MethodInfo>().FirstOrDefault();
}
public static ControllerParameterDescriptor? GetBodyParameterDescriptor(this ActionDescriptor descriptor)
{
ArgumentNullException.ThrowIfNull(descriptor);
ParameterDescriptor? parameterDescriptor = descriptor.Parameters.FirstOrDefault(parameterDescriptor =>
parameterDescriptor.BindingInfo?.BindingSource == BindingSource.Body);
if (parameterDescriptor != null)
{
var controllerParameterDescriptor = parameterDescriptor as ControllerParameterDescriptor;
ConsistencyGuard.ThrowIf(controllerParameterDescriptor == null);
return controllerParameterDescriptor;
}
return null;
}
}