How to pass multiple string array to ASP.NET webapi POST

Jul 13 2018 7:07 AM
Hi,
 
Please let me know how to pass multiple string array to wepapi post method.with out creating any object, i just pass only string array parameters to POST method. 
 
as like below. 
 
public string PostCreateRequest([FromBody]string[] input1,[FromBody]string[] input2,[FromBody]string[] input3) 
{
 --------
------- 
}
 
 
 

Answers (1)