in Technology by
What are the main return types supported in dotnet WEB API?

1 Answer

0 votes
by

Below are the four main return types supported in ASP.NET WEB API:-

(1)HttpResponseMessage

(2)IHttpActionResult

(3)Void

(4)Other types like as string, int etc

Related questions

0 votes
    How to get ASP.NET Web API to return JSON instead of XML using Chrome?...
asked Jan 11, 2021 in Technology by JackTerrance
0 votes
    What are the supported data types in Python?...
asked Apr 24, 2021 in Technology by JackTerrance
0 votes
    What Are the Data Types Supported in Tableau?...
asked Mar 29, 2021 in Technology by JackTerrance
0 votes
    What are the various types of schemas supported by Talend?...
asked Mar 18, 2021 in Technology by JackTerrance
0 votes
    What are the different data types supported by Tableau?...
asked Feb 5, 2021 in Technology by JackTerrance
0 votes
    What are the supported data types in Python?...
asked Nov 23, 2020 in Technology by JackTerrance
0 votes
    What Are the Data Types Supported in Tableau?...
asked Nov 1, 2020 in Technology by JackTerrance
+1 vote
    What VPN types are supported by Azure?...
asked Oct 20, 2020 in Technology by JackTerrance
0 votes
    Which of the following options/option are/is not supported while loading the data from a local data source using Web UI? (1 ... and commas (2)Only Commas (3)Only Wildcards (4)dots...
asked May 31, 2021 in Education by JackTerrance
0 votes
    What are the data types supported by Microsoft Office Access 2010 Select the correct answer from above options...
asked Dec 15, 2021 in Education by JackTerrance
0 votes
    _______________ are the supported data types in Apache Drill. Please select the correct options from below (a)BINARY (b)DATE (c)BIGINT (d)All of the options...
asked Dec 11, 2020 in Education by Editorial Staff
0 votes
    Which of the following data types is not supported in Python? Select the correct answer from above options...
asked Jan 11, 2022 in Education by JackTerrance
0 votes
    Quandl API for Python wraps the ________ REST API to return Pandas DataFrames with time series indexes. (a) ... and answers pdf, Data Science interview questions for beginners...
asked Oct 31, 2021 in Education by JackTerrance
0 votes
    What is the output of the below program? #include int main() { printf("%u",sizeof(NULL)); return 0; }...
asked Jan 23, 2021 in Technology by JackTerrance
0 votes
    int fun(int n) { if(n!=0) { return n – fun(n-5); } else { return n; } } int main(){ int n = 20, z; z = fun(n); printf(“%d”, z); } Select the correct answer from above options...
asked Dec 31, 2021 in Education by JackTerrance
...