HttpResponseFeature.OnStarting(Func<Object,Task>, Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Registers a callback to be invoked just before the response starts.
This is the last chance to modify the Headers, StatusCode, or ReasonPhrase.
public:
virtual void OnStarting(Func<System::Object ^, System::Threading::Tasks::Task ^> ^ callback, System::Object ^ state);
public virtual void OnStarting (Func<object,System.Threading.Tasks.Task> callback, object state);
abstract member OnStarting : Func<obj, System.Threading.Tasks.Task> * obj -> unit
override this.OnStarting : Func<obj, System.Threading.Tasks.Task> * obj -> unit
Public Overridable Sub OnStarting (callback As Func(Of Object, Task), state As Object)
Parameters
- state
- Object
The state to pass into the callback.