# Response.FromResult(TResult)

[Type overview](/orleans/docs/api/csharp/microsoft.orleans.serialization/orleans.serialization.invocation.response/) | [Methods](/orleans/docs/api/csharp/microsoft.orleans.serialization/orleans.serialization.invocation.response/methods/)

[Source](https://github.com/dotnet/orleans/blob/e4e752cedecc2976811db49802c7a999b1f1c704/src/Orleans.Serialization/Invocation/Response.cs#L36-L38)

```csharp
public static Response FromResult<TResult>(TResult value)
```

Creates a new response object which has been fulfilled with the provided value.

### Parameters

- `value` (`TResult`): The value.

### Returns

A new response.
