About 14,400,000,000 results
Open links in new tab
  1. Return File in ASP.NET Core Web API - Code Maze

    Apr 4, 2024 · In this article, we will learn how to return a file in a Web API. We will show two approaches using the byte array and stream.

  2. c# - Return file in ASP.Net Core Web API - Stack Overflow

    Apr 4, 2017 · If this is ASP.NET Core then you are mixing web API versions. Have the action return a derived IActionResult because in your current code the framework is treating HttpResponseMessage …

  3. Action Return Types in ASP.NET Core Web API

    In this article, I am going to discuss the different Controller Action Method Return Types in ASP.NET Core Web API Application with Examples.

  4. What is “return” and what’s its use in roblox scripting?

    Jun 22, 2020 · Hey guys, so I have been searching for so much time, I have watched so many videos, read some articles, and I still don’t understand the point of the code “return” in a function. Can you …

  5. Setting a return value | NSubstitute

    The following examples relate to substituting for the following interface: public interface ICalculator { int Add(int a, int b); string Mode { get; set; } } For methods To set a return value for a method call on a …

  6. C# Return Values - W3Schools

    Return Values In the previous page, we used the void keyword in all examples, which indicates that the method should not return a value. If you want the method to return a value, you can use a primitive …

  7. Using Return Statement in PowerShell Functions and Scripts

    In this post we will show you how to return values from PowerShell functions using Return command in your PowerShell scripts